Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Pinned dnspython to stay below 2.7.0 as newer version require python upgrade #50

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ djangorestframework-csv==3.0.2
# via
# -r requirements/base.in
# edx-enterprise-data
dnspython==2.7.0
# via pymongo
dnspython==2.6.1
# via
# -c requirements/constraints.txt
# pymongo
drf-jwt==1.19.2
# via edx-drf-extensions
drf-yasg==1.21.7
Expand Down
3 changes: 3 additions & 0 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ urllib3<2.0.0

# path>16.14.0 has removed the deprecated abspath function, which is breaking the docs build
path<16.15.0

# dnspython 2.7.0 Requires-Python >=3.9
dnspython<2.7.0
6 changes: 4 additions & 2 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ djangorestframework-csv==3.0.2
# via
# -r requirements/base.in
# edx-enterprise-data
dnspython==2.7.0
# via pymongo
dnspython==2.6.1
# via
# -c requirements/constraints.txt
# pymongo
drf-jwt==1.19.2
# via edx-drf-extensions
drf-yasg==1.21.7
Expand Down
6 changes: 4 additions & 2 deletions requirements/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@ djangorestframework-csv==3.0.2
# via
# -r requirements/base.in
# edx-enterprise-data
dnspython==2.7.0
# via pymongo
dnspython==2.6.1
# via
# -c requirements/constraints.txt
# pymongo
docutils==0.21.2
# via
# pydata-sphinx-theme
Expand Down
6 changes: 4 additions & 2 deletions requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ djangorestframework-csv==3.0.2
# via
# -r requirements/base.in
# edx-enterprise-data
dnspython==2.7.0
# via pymongo
dnspython==2.6.1
# via
# -c requirements/constraints.txt
# pymongo
drf-jwt==1.19.2
# via edx-drf-extensions
drf-yasg==1.21.7
Expand Down
6 changes: 4 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ djangorestframework-csv==3.0.2
# via
# -r requirements/base.in
# edx-enterprise-data
dnspython==2.7.0
# via pymongo
dnspython==2.6.1
# via
# -c requirements/constraints.txt
# pymongo
drf-jwt==1.19.2
# via edx-drf-extensions
drf-yasg==1.21.7
Expand Down
Loading