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

Add explicit dependency for docutils #399

Merged
merged 3 commits into from
Apr 24, 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
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
Loading