Skip to content

Commit c6a3ef6

Browse files
authored
attempt to fix the install issues (#141)
* skip `sphinx=8` on `python=3.9` (`sphinx=8` requires `python>=3.10`) * remove the obsolete `import-metadata` install * install `tomli` on `python<3.11` * fetch the entire repo
1 parent 8f677e0 commit c6a3ef6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,17 @@ jobs:
1616
matrix:
1717
python-version: ["3.9", "3.12", "3.13"]
1818
sphinx-version: ["5.3", "6.2", "7.3", "7.4", "8.0", "8.1"]
19+
exclude:
20+
- python-version: "3.9"
21+
sphinx-version: "8.0"
22+
- python-version: "3.9"
23+
sphinx-version: "8.1"
1924

2025
steps:
2126
- name: checkout the repository
2227
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 0
2330

2431
- name: setup python
2532
uses: actions/setup-python@v5

ci/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
importlib-metadata; python_version < "3.8"
21
packaging
32
sphinx
43
sphinx_rtd_theme
4+
tomli; python_version < "3.11"

0 commit comments

Comments
 (0)