Skip to content

Commit

Permalink
ci,build: build and test on python 3.11, 3.12, and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Dec 19, 2024
1 parent aadb672 commit f167c07
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,14 @@ jobs:
- linux: py36-test
runs-on: ubuntu-20.04
- linux: py38-test
- linux: py311-test
- macos: py37-test
- macos: py310-test
- macos: py313-test
- windows: py39-test
- windows: py312-test
- linux: py38-notebooks
- macos: py37-notebooks
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"jupyter-packaging~=0.7.12",
"jupyterlab~=3.0.0",
"jupyter-packaging>=0.10.6",
"jupyterlab>=3.6",
"hatchling",
]
build-backend = "hatchling.build"
Expand Down Expand Up @@ -29,6 +29,9 @@ classifiers = [
"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 = [
"ipywidgets>=7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38,39,310}-{test,notebooks}
envlist = py{36,37,38,39,310,311,312,313}-{test,notebooks}
requires = pip >= 18.0
setuptools >= 30.3.0
isolated_build = true
Expand Down

0 comments on commit f167c07

Please sign in to comment.