Skip to content

Commit

Permalink
Add explicit dependency for docutils (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti authored Apr 24, 2024
1 parent 40cb695 commit c7ff2e2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/changes/changes_3.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ TBD
## Changes

* Moved `pytest` dependency to development dependencies
* Add explicit dependency and version constraint (`<= 0.20.1`) for `docutils`
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ exasol-bucketfs = ">=0.6.0,<2.0.0"
fabric = "^3.0.1"
portalocker = "^2.7.0"
exasol-error-reporting = "^0.4.0"
# The current combination of dependencies for ITDE and Luigi is not compatible with projects that run on Python 3.8.
# The latest version of docutils, version 0.21.1, is required to run on Python 3.9 or higher.
# As a temporary fix, until support for Python 3.8 is dropped (which is estimated to be around 6 months),
# we are explicitly requiring a version of docutils that is less than or equal to 0.20.1 in ITDE.
# Once support for Python 3.8 is dropped, this dependency can be removed as it is only needed as a transitive dependency.
docutils = "<=0.20.1"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
Expand Down

0 comments on commit c7ff2e2

Please sign in to comment.