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 62e2239 commit 68c6f0e
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 @@ -13,3 +13,7 @@

# 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 @@ -86,8 +86,9 @@ django==4.2.15
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/quality.txt
docutils==0.21.2
docutils==0.20.1
# via
# -c requirements/constraints.txt
# -r requirements/quality.txt
# readme-renderer
edx-lint==5.3.7
Expand All @@ -101,7 +102,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 @@ -258,7 +259,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 @@ -57,6 +57,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 @@ -70,7 +71,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 @@ -46,13 +46,15 @@ django==4.2.15
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/test.txt
docutils==0.21.2
# via readme-renderer
docutils==0.20.1
# via
# -c requirements/constraints.txt
# readme-renderer
edx-lint==5.3.7
# via -r requirements/quality.in
idna==3.7
# via requests
importlib-metadata==8.2.0
importlib-metadata==8.3.0
# via
# keyring
# twine
Expand Down Expand Up @@ -153,7 +155,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 68c6f0e

Please sign in to comment.