From 37b74561b518653ad8800e895a67acab79e7f57d Mon Sep 17 00:00:00 2001 From: Andreas Fehlner Date: Wed, 9 Oct 2024 19:08:23 +0200 Subject: [PATCH] Activate testing for python 3.13 (#208) * test for python 3.13 * Update tests.yml * Update tests.yml * Update tests.yml * Update appveyor.yml * Aktualisieren von tests.yml * Update tests.yml * Update appveyor.yml * Quote Python versions in YAML * Remove Python 3.13 again on Appveyor * remove 3.7 from setup --------- Co-authored-by: Thomas Kluyver --- .github/workflows/tests.yml | 4 ++-- appveyor.yml | 4 +++- setup.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) 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',