Skip to content

Commit

Permalink
Remove version caps from dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns committed Oct 11, 2022
1 parent a7be624 commit c3315c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ piprot: ## Check for outdated dependencies
mutmut: clean ## Run mutation tests
tox -e mutmut run
tox -e mutmut html
open open html/index.html
open html/index.html

.PHONY: docs
docs: ## Generate documentation
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
],
python_requires=">=3.7 ",
install_requires=[
"beautifulsoup4~=4.0",
"brunns-row~=2.0",
"Deprecated~=1.2",
"furl~=2.0",
"pyhamcrest~=2.0",
"requests~=2.0",
"typing-extensions~=3.7 ; python_version<'3.8'",
"beautifulsoup4>=4.0",
"brunns-row>=2.0",
"Deprecated>=1.2",
"furl>=2.0",
"pyhamcrest>=2.0",
"requests>=2.0",
"typing-extensions>=3.7 ; python_version<'3.8'",
],
)

0 comments on commit c3315c8

Please sign in to comment.