From bdd37a0ec0cbccfdaaab90879c365b2a7e415bd5 Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish Date: Tue, 19 Nov 2024 22:19:20 -0500 Subject: [PATCH] add dep packages --- .github/workflows/tests.yml | 6 +++--- setup.py | 11 ++++++++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c81af40..4629a91 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest] steps: - uses: actions/checkout@v1 @@ -50,7 +50,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v1 @@ -68,7 +68,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v1 diff --git a/setup.py b/setup.py index 8c2e5a2..22ea720 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ # general 'bumpversion>=0.5.3,<0.6', 'pip>=9.0.1', - 'watchdog>=0.8.3,<0.11', + 'watchdog>=0.8.3,<7', # docs 'docutils>=0.12,<0.18', @@ -49,6 +49,15 @@ 'markupsafe<2.1.0', 'ipython>=6.5,<9', 'Jinja2>=2,<3', + + # fails on Sphinx < v3.4 + 'alabaster<=0.7.12', + # fails on Sphins < v5.0 + 'sphinxcontrib-applehelp<1.0.8', + 'sphinxcontrib-devhelp<1.0.6', + 'sphinxcontrib-htmlhelp<2.0.5', + 'sphinxcontrib-serializinghtml<1.1.10', + 'sphinxcontrib-qthelp<1.0.7', # style check 'flake8>=3.7.7,<4',