Skip to content

Commit d825056

Browse files
committed
updated python versions to include 3.13 and drop <3.10
1 parent cd97c11 commit d825056

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/testdask.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, macos-latest]
21-
python-version: ['3.9', '3.10', '3.11', '3.12']
21+
python-version: ['3.10', '3.11', '3.12', '3.13']
2222
fail-fast: false
2323
runs-on: ${{ matrix.os }}
2424

.github/workflows/testpydra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
os: [macos-latest, ubuntu-latest, windows-latest]
53-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
53+
python-version: ['3.10', '3.11', '3.12', '3.13']
5454
install: ['wheel']
5555
include:
5656
- os: 'ubuntu-latest'

.github/workflows/testsingularity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.8, 3.9, "3.10", "3.11"]
19+
python-version: ['3.10', '3.11', '3.12', '3.13']
2020
fail-fast: False
2121

2222
steps:

.github/workflows/testslurm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
strategy:
1616
matrix:
17-
python-version: [3.8.16, 3.9.16, 3.10.9, 3.11.5]
17+
python-version: [3.10.9, 3.11.5]
1818
fail-fast: false
1919
runs-on: ubuntu-latest
2020
env:

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "pydra"
77
description = "Pydra dataflow engine"
88
readme = "README.rst"
9-
requires-python = ">=3.8"
9+
requires-python = ">=3.10"
1010
dependencies = [
1111
"attrs >=19.1.0",
1212
"cloudpickle >=2.0.0",
@@ -32,11 +32,10 @@ classifiers = [
3232
"Operating System :: MacOS :: MacOS X",
3333
"Operating System :: Microsoft :: Windows",
3434
"Operating System :: POSIX :: Linux",
35-
"Programming Language :: Python :: 3.8",
36-
"Programming Language :: Python :: 3.9",
3735
"Programming Language :: Python :: 3.10",
3836
"Programming Language :: Python :: 3.11",
3937
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
4039
"Topic :: Scientific/Engineering",
4140
]
4241
dynamic = ["version"]

0 commit comments

Comments
 (0)