Skip to content

Commit

Permalink
Fix missing comma in setup.py requirements
Browse files Browse the repository at this point in the history
This bug was reported by Poetry

> Resolving dependencies... (13.6s)<debug>PackageInfo:</debug> Invalid constraint (djangorestframework-stubs>=0.4.0typing-extensions>=3.7.4) found in django-filter-stubs-0.1.1 dependencies, skipping
  • Loading branch information
intgr authored Aug 4, 2021
1 parent 6993ba0 commit 61a19b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def find_stub_files(name):
install_requires=[
"mypy>=0.750",
"django-stubs>=1.3.0",
"djangorestframework-stubs>=0.4.0" "typing-extensions>=3.7.4",
"djangorestframework-stubs>=0.4.0",
"typing-extensions>=3.7.4",
],
classifiers=[
"Development Status :: 1 - Planning",
Expand Down

0 comments on commit 61a19b7

Please sign in to comment.