Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 19 additions & 13 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.13"
python-version: "3.14"
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: "true"
Expand All @@ -84,7 +84,7 @@ jobs:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.13'
python-version: '3.14'
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: "true"
Expand All @@ -105,11 +105,11 @@ jobs:
matrix:
include:
- operating-system: ubuntu-latest
python-version: '3.13'
python-version: '3.14'
environment-file: .ci_support/environment-openmpi.yml

- operating-system: ubuntu-latest
python-version: '3.13'
python-version: '3.14'
environment-file: .ci_support/environment-mpich.yml

steps:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.12"
python-version: "3.13"
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: "true"
Expand All @@ -174,7 +174,7 @@ jobs:
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.12"
python-version: "3.13"
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: "true"
Expand Down Expand Up @@ -302,13 +302,16 @@ jobs:
matrix:
include:
- operating-system: macos-latest
python-version: '3.13'
python-version: '3.14'

- operating-system: ubuntu-24.04-arm
python-version: '3.13'
python-version: '3.14'

- operating-system: ubuntu-22.04-arm
python-version: '3.13'
python-version: '3.14'

- operating-system: ubuntu-latest
python-version: '3.14'

- operating-system: ubuntu-latest
python-version: '3.13'
Expand Down Expand Up @@ -343,15 +346,18 @@ jobs:
matrix:
include:
- operating-system: macos-latest
python-version: '3.13'
python-version: '3.14'

- operating-system: ubuntu-latest
python-version: '3.13'
python-version: '3.14'

- operating-system: ubuntu-24.04-arm
python-version: '3.13'
python-version: '3.14'

- operating-system: ubuntu-22.04-arm
python-version: '3.14'

- operating-system: ubuntu-latest
python-version: '3.13'

- operating-system: ubuntu-latest
Expand Down Expand Up @@ -384,7 +390,7 @@ jobs:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.13"
python-version: "3.14"
miniforge-version: latest
channels: conda-forge
conda-remove-defaults: "true"
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ authors = [
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["high performance computing", "hpc", "task scheduler", "slurm", "flux-framework", "executor"]
requires-python = ">3.9, <3.14"
requires-python = ">3.9, <3.15"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
Expand All @@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"cloudpickle==3.1.1",
Expand Down
Loading