From 68ac858efc7cbe194d77572f184b9c2731e3d42c Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Wed, 4 Aug 2021 18:55:21 +0300 Subject: [PATCH] Fix missing comma in setup.py requirements (#2) This bug was found thanks to Poetry: > PackageInfo: Invalid constraint (djangorestframework-stubs>=0.4.0typing-extensions>=3.7.4) found in django-filter-stubs-0.1.1 dependencies, skipping --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 22296d0..d95a19b 100644 --- a/setup.py +++ b/setup.py @@ -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",