chore(api): widen dependencies ranges
- https://packages.debian.org/bullseye-backports/python3-django - https://packages.debian.org/bullseye/python3-django-filters - https://packages.debian.org/bullseye/python3-djangorestframework - https://packages.debian.org/bullseye/python3-psycopg2
This commit is contained in:
parent
6c82e37fac
commit
c7c5bad46c
|
@ -1,8 +1,8 @@
|
|||
# This file is auto-generated by tools/extract-requirements.sh.
|
||||
# Please do not edit this file, edit the setup.py file!
|
||||
django~=3.2.13
|
||||
django-filter~=21.1.0
|
||||
djangorestframework~=3.13.1
|
||||
drf-spectacular~=0.22.1
|
||||
psycopg2
|
||||
requests
|
||||
django<4.0,>=3.2.12
|
||||
django-filter<22.0,>=2.4.0
|
||||
djangorestframework<3.14,>=3.12.1
|
||||
drf-spectacular<0.23,>=0.22.1
|
||||
psycopg2<2.10,>=2.8.6
|
||||
requests<2.29,>=2.25.1
|
||||
|
|
12
api/setup.py
12
api/setup.py
|
@ -32,15 +32,15 @@ setup(
|
|||
]
|
||||
},
|
||||
install_requires=[
|
||||
"django~=3.2.13",
|
||||
"djangorestframework~=3.13.1",
|
||||
"django-filter~=21.1.0",
|
||||
"drf-spectacular~=0.22.1",
|
||||
"requests",
|
||||
"django-filter>=2.4.0,<22.0",
|
||||
"django>=3.2.12,<4.0",
|
||||
"djangorestframework>=3.12.1,<3.14",
|
||||
"drf-spectacular>=0.22.1,<0.23",
|
||||
"requests>=2.25.1,<2.29",
|
||||
],
|
||||
extras_require={
|
||||
"prod": [
|
||||
"psycopg2",
|
||||
"psycopg2>=2.8.6,<2.10",
|
||||
],
|
||||
"dev": [
|
||||
"django-stubs",
|
||||
|
|
Loading…
Reference in New Issue