Skip to content

Commit

Permalink
Fix requirements to use range (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeNsaaH authored Nov 21, 2022
1 parent 2b5e923 commit 0c2f4bd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
- name: Install Dependencies
run: pip install -r requirements/dev.txt

- name: Install package
- name: Run tests
run: pytest -s
2 changes: 1 addition & 1 deletion requirements/cli.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
blessed==1.15.0
blessed >=1.15.0, < 2
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-r main.txt
blessed==1.17.8
blessed==1.17.9
m2r==0.2.1
parameterized==0.7.4
pylint==2.5.3
Expand Down
8 changes: 4 additions & 4 deletions requirements/main.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lxml==4.9.1
aiohttp==3.7.4
beautifulsoup4==4.9.1
fake-useragent==0.1.11
lxml >=4.6.5, <5
aiohttp >=3.6.2,<4
beautifulsoup4 >=4.9.1,<5
fake-useragent >=0.1.11, <0.2

0 comments on commit 0c2f4bd

Please sign in to comment.