Skip to content

Commit

Permalink
Update Python version to supported one (#95)
Browse files Browse the repository at this point in the history
* Update Python version to supported one

* Update pyproject.toml.jinja
  • Loading branch information
fcollonval authored Nov 25, 2024
1 parent de5cbca commit 8e943a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
strategy:
matrix:
# This will be used by the base setup action
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
strategy:
matrix:
# This will be used by the base setup action
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
strategy:
matrix:
# This will be used by the base setup action
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# This will be used by the base setup action
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -377,7 +377,7 @@ jobs:
strategy:
matrix:
# This will be used by the base setup action
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.13"]

steps:
- name: Checkout
Expand Down Expand Up @@ -421,7 +421,7 @@ jobs:
strategy:
matrix:
# This will be used by the base setup action
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.13"]

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [{% if kind.lower() == "server" %}
"jupyter_server>=2.4.0,<3"{% endif %}
Expand Down

0 comments on commit 8e943a2

Please sign in to comment.