Skip to content

Commit 0c2f4bd

Browse files
authored
Fix requirements to use range (#181)
1 parent 2b5e923 commit 0c2f4bd

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
- name: Install Dependencies
3131
run: pip install -r requirements/dev.txt
3232

33-
- name: Install package
33+
- name: Run tests
3434
run: pytest -s

requirements/cli.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
blessed==1.15.0
1+
blessed >=1.15.0, < 2

requirements/dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r main.txt
2-
blessed==1.17.8
2+
blessed==1.17.9
33
m2r==0.2.1
44
parameterized==0.7.4
55
pylint==2.5.3

requirements/main.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lxml==4.9.1
2-
aiohttp==3.7.4
3-
beautifulsoup4==4.9.1
4-
fake-useragent==0.1.11
1+
lxml >=4.6.5, <5
2+
aiohttp >=3.6.2,<4
3+
beautifulsoup4 >=4.9.1,<5
4+
fake-useragent >=0.1.11, <0.2

0 commit comments

Comments
 (0)