Skip to content

Commit 57e8974

Browse files
committed
fix: update install requirements
1 parent 477890c commit 57e8974

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

requirements-base.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
django~=4.2
2-
django-cors-headers>=3.7.0,<=4.7.0
2+
django-cors-headers>=4.0.0,<=4.7.0
33
django-environ>=0.10,<=0.11.2
44
django-filter>=22.1,<=25.1
55
django-generic-api-permissions==1.0.1
@@ -11,5 +11,6 @@ gunicorn==23.0.0
1111
mozilla-django-oidc==4.0.1
1212
pyexcel==0.7.0
1313
pyexcel-xlsx==0.6.0
14+
psycopg==3.2.9
1415
requests==2.32.5
1516
openpyxl==3.0.10 # TODO: dependency of `pyexcel-xlsx` Remove as soon as https://github.com/pyexcel/pyexcel-xlsx/issues/52 is resolved.

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ hypothesis==6.138.2
66
ipython==9.4.0
77
pdbpp==0.11.7
88
pre_commit~=4.3.0
9-
psycopg==3.2.9
109
pytest==8.4.1
1110
pytest-cov==6.2.1
1211
pytest-django==4.11.1

setup.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,20 @@
3434
],
3535
packages=find_packages(),
3636
install_requires=[
37-
"django~=3.2",
38-
"django-cors-headers>=3.7.0,<=4.1.0",
37+
"django~=4.2",
38+
"django-cors-headers>4.0.0,<=4.7.0",
3939
"django-environ>=0.10,<0.12",
40-
"django-filter<24",
41-
"django-generic-api-permissions<1",
40+
"django-filter<26",
41+
"django-generic-api-permissions~=1.0",
4242
"django-localized-fields>=6.4,<7",
43-
"django-tree-queries>=0.19.0",
4443
"django-postgres-extra<3",
4544
"djangorestframework>=3.12.4,<4",
46-
"djangorestframework-jsonapi>=4.3.0,<=6.1.0",
45+
"djangorestframework-jsonapi~=8.0.0",
4746
"gunicorn~=23.0.0",
48-
"mozilla-django-oidc<=3",
47+
"mozilla-django-oidc~=4.0",
4948
"pyexcel>0.6,<1",
5049
"pyexcel-xlsx>=0.6.0,<1",
51-
"psycopg2>=2.9,<3",
50+
"psycopg~=3.2",
5251
"requests<3",
5352
"openpyxl<4",
5453
],

0 commit comments

Comments
 (0)