Skip to content

Commit f999ff7

Browse files
committed
Support Python 3.13 and drop 3.9
1 parent 58d4c24 commit f999ff7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/python_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest]
22-
python-version: ["3.12"]
22+
python-version: ["3.13"]
2323
env:
2424
TZ: Europe/Berlin
2525
FORCE_COLOR: true

.github/workflows/python_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
platform: [ubuntu-latest, macos-latest, windows-latest]
22-
python-version: ["3.10", "3.12"]
22+
python-version: ["3.10", "3.13"]
2323
mne-version: [mne-stable]
2424

2525
include:
2626
# special test runs running only on single CI systems to save resources
2727
# Test development versions
2828
- platform: ubuntu-latest
29-
python-version: "3.12"
29+
python-version: "3.13"
3030
mne-version: mne-main
3131

3232
runs-on: ${{ matrix.platform }}
@@ -83,7 +83,7 @@ jobs:
8383
make -C docs/ html
8484
8585
- name: Upload artifacts
86-
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.12' && matrix.mne-version == 'mne-stable'}}
86+
if: ${{ matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.13' && matrix.mne-version == 'mne-stable'}}
8787
uses: actions/upload-artifact@v4
8888
with:
8989
name: docs-artifact

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fetch-tags: true
2525
- uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.12'
27+
python-version: '3.13'
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
build:
77
os: ubuntu-lts-latest
88
tools:
9-
python: "3.12"
9+
python: "3.13"
1010

1111
sphinx:
1212
configuration: docs/conf.py

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
19-
"Programming Language :: Python :: 3.9",
19+
"Programming Language :: Python :: 3.13",
2020
"Programming Language :: Python",
2121
"Topic :: Scientific/Engineering",
2222
]
@@ -32,7 +32,7 @@ maintainers = [
3232
]
3333
name = "pybv"
3434
readme = {content-type = "text/x-rst", file = "README.rst"}
35-
requires-python = ">=3.9"
35+
requires-python = ">=3.10"
3636

3737
[project.optional-dependencies]
3838
dev = ["ipykernel", "ipython", "pybv[test,docs]"]

0 commit comments

Comments
 (0)