Skip to content

Commit

Permalink
Test with python 3.13 (#187)
Browse files Browse the repository at this point in the history
* Test with python 3.13

* Test with dask and python 3.13

* Update default python version to 3.13

* Test only with dask for python 3.13

* Add Python 3.13 as supported language to pyproject.toml
  • Loading branch information
NoraLoose authored Oct 30, 2024
1 parent 95ada22 commit 2e62bc6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypipublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: 3.9
python-version: 3.13

- name: Install dependencies
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
python-version: '3.13'
- uses: actions/download-artifact@v4
with:
name: releases
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"] # Only Python 3.12
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- python=3.12
- python=3.13
- sphinx
- nbsphinx
- sphinx-book-theme
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
Expand Down

0 comments on commit 2e62bc6

Please sign in to comment.