Skip to content

Commit

Permalink
Drop version restrictions for Python packages for dev and tests
Browse files Browse the repository at this point in the history
Let's see how that goes.
  • Loading branch information
philgyford committed Jul 11, 2023
1 parent 861e89c commit 825a7af
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ def get_author_email():
sys.exit()

dev_require = [
"django-debug-toolbar>=2.0,<5.0",
"flake8>=4.0,<7.0",
"django-debug-toolbar",
"flake8",
"black",
"pre-commit",
"python-dotenv",
"pyupgrade",
"unittest-parametrize",
]
tests_require = dev_require + [
"factory-boy>=2.12.0,<4.0",
"freezegun>=0.3.12,<2.0",
"factory-boy",
"freezegun",
"coverage[toml]",
]

Expand Down Expand Up @@ -112,7 +112,6 @@ def get_author_email():
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 825a7af

Please sign in to comment.