Skip to content

Commit

Permalink
Merge pull request #154 from pyiron/py313
Browse files Browse the repository at this point in the history
Update to Python 3.13
  • Loading branch information
jan-janssen authored Oct 30, 2024
2 parents 99a7937 + 64f60ef commit 0cb00f8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions .ci_support/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ dependencies:
- numpy =2.1.2
- pandas =2.2.3
- scandir =1.10.0
- setuptools =75.1.0
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: echo -e "channels:\n - conda-forge\n" > .condarc
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.12"
python-version: "3.13"
miniforge-version: latest
condarc-file: .condarc
environment-file: .ci_support/environment.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypicheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: echo -e "channels:\n - conda-forge\n" > .condarc
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.12"
python-version: "3.13"
miniforge-version: latest
condarc-file: .condarc
environment-file: .ci_support/environment.yml
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,20 @@ jobs:
matrix:
include:
- operating-system: macos-latest
python-version: '3.12'
label: osx-64-py-3-12
python-version: '3.13'
label: osx-64-py-3-13

- operating-system: ubuntu-latest
python-version: '3.12'
label: linux-64-py-3-12
python-version: '3.13'
label: linux-64-py-3-13

- operating-system: windows-latest
python-version: '3.13'
label: win-64-py-3-13

- operating-system: ubuntu-latest
python-version: '3.12'
label: win-64-py-3-12
label: linux-64-py-3-12

- operating-system: ubuntu-latest
python-version: '3.11'
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = [
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.13"
requires-python = ">=3.9, <3.14"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
Expand All @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy==2.1.2",
Expand Down

0 comments on commit 0cb00f8

Please sign in to comment.