Skip to content

Commit

Permalink
ci: test against python 3.13 and jupyterhub 5
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Oct 20, 2024
1 parent 2be1d35 commit 7e14f8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,23 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 10

strategy:
fail-fast: false
matrix:
include:
- python-version: "3.8"
pip-install-spec: "jupyterhub==2.* sqlalchemy==1.*"
- python-version: "3.9"
pip-install-spec: "jupyterhub==3.*"
- python-version: "3.11"
pip-install-spec: "jupyterhub==4.*"
- python-version: "3.12"
pip-install-spec: "jupyterhub==4.*"
- python-version: "3.13"
pip-install-spec: "jupyterhub==5.*"
- python-version: "3.x"
pip-install-spec: "--pre jupyterhub"

steps:
- uses: actions/checkout@v4
Expand All @@ -47,7 +49,7 @@ jobs:
python-version: "${{ matrix.python-version }}"
- uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "lts/*"

- name: Install Node dependencies
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ target_version = [
"py310",
"py311",
"py312",
"py313",
]

# isort is used for autoformatting Python code
Expand Down

0 comments on commit 7e14f8d

Please sign in to comment.