Skip to content

Commit 51d6967

Browse files
committed
upgrade dependencies, pin sphinx to <9 because of myst-parser
1 parent bb8209c commit 51d6967

File tree

2 files changed

+197
-184
lines changed

2 files changed

+197
-184
lines changed

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ name = "pyvec-docs"
33
version = "0"
44
requires-python = "==3.12.*"
55
dependencies = [
6-
"click==8.3.1",
7-
"jinja2==3.1.6",
8-
"myst-parser==4.0.1",
9-
"pydantic==2.12.4",
10-
"requests==2.32.5",
11-
"sphinx-rtd-theme==3.0.2",
12-
"sphinx==8.2.3",
13-
"sphinxemoji==0.3.1",
6+
"click>=8.3.1",
7+
"jinja2>=3.1.6",
8+
"myst-parser>=4.0.1",
9+
"pydantic>=2.12.4",
10+
"requests>=2.32.5",
11+
"sphinx-rtd-theme>=3.0.2",
12+
"sphinx<9", # see https://github.com/executablebooks/MyST-Parser/issues/1077
13+
"sphinxemoji>=0.3.1",
1414
]
1515

1616
[project.scripts]
1717
pyvec-docs = "pyvec_docs.cli:main"
1818

1919
[dependency-groups]
2020
dev = [
21-
"pytest-ruff==0.5",
22-
"pytest==9.0.1",
23-
"sphinx-autobuild==2025.8.25",
21+
"pytest-ruff>=0.5",
22+
"pytest>=9.0.1",
23+
"sphinx-autobuild>=2025.8.25",
2424
]
2525

2626
[build-system]

0 commit comments

Comments
 (0)