Skip to content

Commit

Permalink
fix: add dependency exceptiongroup for python < 3.11 to build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSasser committed Oct 10, 2024
1 parent 8ea01f0 commit a415fe7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 22 deletions.
29 changes: 15 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,18 @@ classifiers = [
]

dependencies = [
"GitPython>=3.1.43,<4.0.0",
"coloredlogs>=15.0.1,<16.0.0",
"paramiko>=3.4.0,<4.0.0",
"ruamel.yaml>=0.18.6",
"ansible-runner>=2.4.0,<3.0.0",
"attrs>=23.2.0",
"xdg>=6.0.0,<7.0.0",
"Jinja2>=3.1.4,<4.0.0",
"psycopg>=3.1.19,<4.0.0",
"httpx[http2]>=0.27.2",
"sshtunnel>=0.4.0,<0.5.0",
"rich>=13.8.0,<14.0.0",
"myst-parser[docs]>=4.0.0",
"tomli[docs]>=2.0.2",
"GitPython>=3.1.43,<4.0.0",
"coloredlogs>=15.0.1,<16.0.0",
"paramiko>=3.4.0,<4.0.0",
"ruamel.yaml>=0.18.6",
"ansible-runner>=2.4.0,<3.0.0",
"attrs>=23.2.0",
"xdg>=6.0.0,<7.0.0",
"Jinja2>=3.1.4,<4.0.0",
"psycopg>=3.1.19,<4.0.0",
"httpx[http2]>=0.27.2",
"sshtunnel>=0.4.0,<0.5.0",
"rich>=13.8.0,<14.0.0",
]

requires-python = ">=3.10,<4.0"
Expand Down Expand Up @@ -80,6 +78,9 @@ docs = [
"sphinxcontrib-programoutput>=0.17",
"numpydoc>=1.5.0",
"sphinx-rtd-theme>=3.0,<4.0",
"myst-parser>=4.0.0",
"tomli>=2.0.2; python_version < '3.11'",
"exceptiongroup>=1.2.2; python_version < '3.11'",
]

[tool.rye.scripts]
Expand Down
4 changes: 0 additions & 4 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -844,10 +844,6 @@ tabulate==0.9.0 \
--hash=sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c \
--hash=sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f
# via numpydoc
tomli==2.0.2 \
--hash=sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38 \
--hash=sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed
# via matrixctl
towncrier==24.8.0 \
--hash=sha256:013423ee7eed102b2f393c287d22d95f66f1a3ea10a4baa82d298001a7f18af3 \
--hash=sha256:9343209592b839209cdf28c339ba45792fbfe9775b5f9c177462fd693e127d8d
Expand Down
4 changes: 0 additions & 4 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -673,10 +673,6 @@ tabulate==0.9.0 \
--hash=sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c \
--hash=sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f
# via numpydoc
tomli==2.0.2 \
--hash=sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38 \
--hash=sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed
# via matrixctl
typing-extensions==4.12.2 ; python_full_version < '3.13' \
--hash=sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d \
--hash=sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8
Expand Down

0 comments on commit a415fe7

Please sign in to comment.