Skip to content

Commit

Permalink
fix: add constraint for docutils to avoid failures in py38 environments
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi committed Aug 19, 2024
1 parent 6d21226 commit 42a57a5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ astroid<3.0.0

# Temporary to Support the python 3.11 Upgrade
backports.zoneinfo;python_version<"3.9" # Newer versions have zoneinfo available in the standard library

# Python 3.8 is not supported by newer versions of docutils. Remove this pin once
# python 3.8 is deprecated
docutils==0.20.1
7 changes: 4 additions & 3 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ dnspython==2.6.1
# via
# -r requirements/quality.txt
# pymongo
docutils==0.21.2
docutils==0.20.1
# via
# -c requirements/constraints.txt
# -r requirements/quality.txt
# readme-renderer
edx-ccx-keys==1.3.0
Expand All @@ -131,7 +132,7 @@ idna==3.7
# via
# -r requirements/quality.txt
# requests
importlib-metadata==8.2.0
importlib-metadata==8.3.0
# via
# -r requirements/quality.txt
# keyring
Expand Down Expand Up @@ -308,7 +309,7 @@ pyyaml==6.0.2
# via
# -r requirements/quality.txt
# code-annotations
readme-renderer==44.0
readme-renderer==43.0
# via
# -r requirements/quality.txt
# twine
Expand Down
3 changes: 2 additions & 1 deletion requirements/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ doc8==1.1.1
# via -r requirements/doc.in
docutils==0.20.1
# via
# -c requirements/constraints.txt
# doc8
# pydata-sphinx-theme
# readme-renderer
Expand All @@ -101,7 +102,7 @@ idna==3.7
# requests
imagesize==1.4.1
# via sphinx
importlib-metadata==8.2.0
importlib-metadata==8.3.0
# via
# keyring
# twine
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ wheel==0.44.0
# The following packages are considered to be unsafe in a requirements file:
pip==24.2
# via -r requirements/pip.in
setuptools==72.2.0
setuptools==73.0.0
# via -r requirements/pip.in
10 changes: 6 additions & 4 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,10 @@ dnspython==2.6.1
# via
# -r requirements/test.txt
# pymongo
docutils==0.21.2
# via readme-renderer
docutils==0.20.1
# via
# -c requirements/constraints.txt
# readme-renderer
edx-ccx-keys==1.3.0
# via -r requirements/test.txt
edx-django-utils==5.15.0
Expand All @@ -84,7 +86,7 @@ fastavro==1.9.5
# via -r requirements/test.txt
idna==3.7
# via requests
importlib-metadata==8.2.0
importlib-metadata==8.3.0
# via
# keyring
# twine
Expand Down Expand Up @@ -205,7 +207,7 @@ pyyaml==6.0.2
# via
# -r requirements/test.txt
# code-annotations
readme-renderer==44.0
readme-renderer==43.0
# via twine
requests==2.32.3
# via
Expand Down

0 comments on commit 42a57a5

Please sign in to comment.