Skip to content

Commit 974cfa5

Browse files
committed
chore: Drop Python 3.8 support, test on 3.13
1 parent cb7a35b commit 974cfa5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
executor:
1010
name: python/default
11-
tag: '3.12'
11+
tag: '3.13'
1212

1313
# docker:
1414
# - auth:
@@ -38,7 +38,7 @@ jobs:
3838
deploy_pypi:
3939
executor:
4040
name: python/default
41-
tag: '3.12'
41+
tag: '3.13'
4242

4343
# docker:
4444
# - auth:
@@ -60,7 +60,7 @@ jobs:
6060
tests:
6161
executor:
6262
name: python/default
63-
tag: '3.12'
63+
tag: '3.13'
6464

6565
# docker:
6666
# - auth:

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
needs: build
6464
strategy:
6565
matrix:
66-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
66+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
6767
mode: ['wheel']
6868
include:
6969
- {python-version: '3.11', mode: 'repo'}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ classifiers = [
1212
"Intended Audience :: Science/Research",
1313
"Topic :: Scientific/Engineering :: Image Recognition",
1414
"License :: OSI Approved :: Apache Software License",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
2020
]
2121
license = {file = "LICENSE"}
22-
requires-python = ">=3.8"
22+
requires-python = ">=3.9"
2323
dependencies = [
2424
"pybids >= 0.15.2",
2525
"importlib_resources >= 5.7; python_version < '3.11'",

0 commit comments

Comments
 (0)