Skip to content

Commit

Permalink
Activate testing for python 3.13 (#208)
Browse files Browse the repository at this point in the history
* 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 <takowl@gmail.com>
  • Loading branch information
andife and takluyver authored Oct 9, 2024
1 parent 373e9af commit 37b7456
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
'ipykernel',
'coverage',
],
python_requires='>=3.7, <4',
python_requires='>=3.8, <4',
classifiers = [
'Framework :: IPython',
'Framework :: Pytest',
Expand Down

0 comments on commit 37b7456

Please sign in to comment.