Skip to content
Merged
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
17 changes: 10 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
architecture: x64
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.13'
python-version: '3.14'
miniforge-version: latest
condarc-file: .condarc
environment-file: environment.yml
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v3
with:
python-version: '3.13'
python-version: '3.14'
miniforge-version: latest
condarc-file: .condarc
environment-file: .ci_support/environment.yml
Expand All @@ -181,16 +181,19 @@ jobs:
matrix:
include:
- operating-system: macos-latest
python-version: '3.13'
python-version: '3.14'

- operating-system: windows-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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors = [
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.14"
requires-python = ">=3.9, <3.15"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
Expand All @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"jinja2==3.1.6",
Expand Down
Loading