Skip to content

Commit 37b7456

Browse files
andifetakluyver
andauthoredOct 9, 2024··
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 <[email protected]>
1 parent 373e9af commit 37b7456

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
 

‎.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, '3.10']
16+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1717

1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v2
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

‎appveyor.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ image: Visual Studio 2019
66
# environment variables
77
environment:
88
matrix:
9-
- PYTHON: "C:\\Python37-x64"
109
- PYTHON: "C:\\Python38-x64"
1110
- PYTHON: "C:\\Python39-x64"
11+
- PYTHON: "C:\\Python310-x64"
12+
- PYTHON: "C:\\Python311-x64"
13+
- PYTHON: "C:\\Python312-x64"
1214

1315
# scripts that run after cloning repository
1416
install:

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'ipykernel',
2828
'coverage',
2929
],
30-
python_requires='>=3.7, <4',
30+
python_requires='>=3.8, <4',
3131
classifiers = [
3232
'Framework :: IPython',
3333
'Framework :: Pytest',

0 commit comments

Comments
 (0)
Please sign in to comment.