Skip to content

Commit b1b1d81

Browse files
authoredOct 7, 2024··
Merge pull request #50 from edx/saleem-latif/ENT-9573-fix
fix: Pinned dnspython to stay below 2.7.0 as newer version require python upgrade
2 parents cb334d0 + b6f17ba commit b1b1d81

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed
 

‎requirements/base.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ djangorestframework-csv==3.0.2
9191
# via
9292
# -r requirements/base.in
9393
# edx-enterprise-data
94-
dnspython==2.7.0
95-
# via pymongo
94+
dnspython==2.6.1
95+
# via
96+
# -c requirements/constraints.txt
97+
# pymongo
9698
drf-jwt==1.19.2
9799
# via edx-drf-extensions
98100
drf-yasg==1.21.7

‎requirements/constraints.txt

+3
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ urllib3<2.0.0
2626

2727
# path>16.14.0 has removed the deprecated abspath function, which is breaking the docs build
2828
path<16.15.0
29+
30+
# dnspython 2.7.0 Requires-Python >=3.9
31+
dnspython<2.7.0

‎requirements/dev.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ djangorestframework-csv==3.0.2
9191
# via
9292
# -r requirements/base.in
9393
# edx-enterprise-data
94-
dnspython==2.7.0
95-
# via pymongo
94+
dnspython==2.6.1
95+
# via
96+
# -c requirements/constraints.txt
97+
# pymongo
9698
drf-jwt==1.19.2
9799
# via edx-drf-extensions
98100
drf-yasg==1.21.7

‎requirements/doc.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ djangorestframework-csv==3.0.2
101101
# via
102102
# -r requirements/base.in
103103
# edx-enterprise-data
104-
dnspython==2.7.0
105-
# via pymongo
104+
dnspython==2.6.1
105+
# via
106+
# -c requirements/constraints.txt
107+
# pymongo
106108
docutils==0.21.2
107109
# via
108110
# pydata-sphinx-theme

‎requirements/production.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ djangorestframework-csv==3.0.2
9191
# via
9292
# -r requirements/base.in
9393
# edx-enterprise-data
94-
dnspython==2.7.0
95-
# via pymongo
94+
dnspython==2.6.1
95+
# via
96+
# -c requirements/constraints.txt
97+
# pymongo
9698
drf-jwt==1.19.2
9799
# via edx-drf-extensions
98100
drf-yasg==1.21.7

‎requirements/test.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,10 @@ djangorestframework-csv==3.0.2
106106
# via
107107
# -r requirements/base.in
108108
# edx-enterprise-data
109-
dnspython==2.7.0
110-
# via pymongo
109+
dnspython==2.6.1
110+
# via
111+
# -c requirements/constraints.txt
112+
# pymongo
111113
drf-jwt==1.19.2
112114
# via edx-drf-extensions
113115
drf-yasg==1.21.7

0 commit comments

Comments
 (0)
Please sign in to comment.