jo 2022-06-28 12:48:08 +02:00 committed by Kyle Robbertze
parent 6c82e37fac
commit c7c5bad46c
2 changed files with 12 additions and 12 deletions

View File

@ -1,8 +1,8 @@
# This file is auto-generated by tools/extract-requirements.sh. # This file is auto-generated by tools/extract-requirements.sh.
# Please do not edit this file, edit the setup.py file! # Please do not edit this file, edit the setup.py file!
django~=3.2.13 django<4.0,>=3.2.12
django-filter~=21.1.0 django-filter<22.0,>=2.4.0
djangorestframework~=3.13.1 djangorestframework<3.14,>=3.12.1
drf-spectacular~=0.22.1 drf-spectacular<0.23,>=0.22.1
psycopg2 psycopg2<2.10,>=2.8.6
requests requests<2.29,>=2.25.1

View File

@ -32,15 +32,15 @@ setup(
] ]
}, },
install_requires=[ install_requires=[
"django~=3.2.13", "django-filter>=2.4.0,<22.0",
"djangorestframework~=3.13.1", "django>=3.2.12,<4.0",
"django-filter~=21.1.0", "djangorestframework>=3.12.1,<3.14",
"drf-spectacular~=0.22.1", "drf-spectacular>=0.22.1,<0.23",
"requests", "requests>=2.25.1,<2.29",
], ],
extras_require={ extras_require={
"prod": [ "prod": [
"psycopg2", "psycopg2>=2.8.6,<2.10",
], ],
"dev": [ "dev": [
"django-stubs", "django-stubs",