diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2620085..d76bc55 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,14 +13,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/appveyor.yml b/appveyor.yml index 2deeda1..b1e639d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,9 +6,11 @@ image: Visual Studio 2019 # environment variables environment: matrix: - - PYTHON: "C:\\Python37-x64" - PYTHON: "C:\\Python38-x64" - PYTHON: "C:\\Python39-x64" + - PYTHON: "C:\\Python310-x64" + - PYTHON: "C:\\Python311-x64" + - PYTHON: "C:\\Python312-x64" # scripts that run after cloning repository install: diff --git a/setup.py b/setup.py index 8d97337..23200d6 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ 'ipykernel', 'coverage', ], - python_requires='>=3.7, <4', + python_requires='>=3.8, <4', classifiers = [ 'Framework :: IPython', 'Framework :: Pytest',