Skip to content

Commit

Permalink
updated python versions to include 3.13 and drop <3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Dec 4, 2024
1 parent cd97c11 commit d825056
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testdask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
fail-fast: false
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testpydra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
install: ['wheel']
include:
- os: 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testsingularity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: ['3.10', '3.11', '3.12', '3.13']
fail-fast: False

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testslurm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
strategy:
matrix:
python-version: [3.8.16, 3.9.16, 3.10.9, 3.11.5]
python-version: [3.10.9, 3.11.5]
fail-fast: false
runs-on: ubuntu-latest
env:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "pydra"
description = "Pydra dataflow engine"
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
"attrs >=19.1.0",
"cloudpickle >=2.0.0",
Expand All @@ -32,11 +32,10 @@ classifiers = [
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
Expand Down

0 comments on commit d825056

Please sign in to comment.