Skip to content

Commit bdd37a0

Browse files
committed
add dep packages
1 parent e09dd76 commit bdd37a0

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
35+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
3636
os: [ubuntu-latest]
3737
steps:
3838
- uses: actions/checkout@v1
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{ matrix.os }}
5151
strategy:
5252
matrix:
53-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
53+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
5454
os: [ubuntu-latest, macos-latest]
5555
steps:
5656
- uses: actions/checkout@v1
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ${{ matrix.os }}
6969
strategy:
7070
matrix:
71-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
71+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
7272
os: [ubuntu-latest, macos-latest, windows-latest]
7373
steps:
7474
- uses: actions/checkout@v1

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# general
3939
'bumpversion>=0.5.3,<0.6',
4040
'pip>=9.0.1',
41-
'watchdog>=0.8.3,<0.11',
41+
'watchdog>=0.8.3,<7',
4242

4343
# docs
4444
'docutils>=0.12,<0.18',
@@ -49,6 +49,15 @@
4949
'markupsafe<2.1.0',
5050
'ipython>=6.5,<9',
5151
'Jinja2>=2,<3',
52+
53+
# fails on Sphinx < v3.4
54+
'alabaster<=0.7.12',
55+
# fails on Sphins < v5.0
56+
'sphinxcontrib-applehelp<1.0.8',
57+
'sphinxcontrib-devhelp<1.0.6',
58+
'sphinxcontrib-htmlhelp<2.0.5',
59+
'sphinxcontrib-serializinghtml<1.1.10',
60+
'sphinxcontrib-qthelp<1.0.7',
5261

5362
# style check
5463
'flake8>=3.7.7,<4',

0 commit comments

Comments
 (0)