Skip to content

Commit 19dc957

Browse files
committed
Drop Python 3.8
1 parent 9982c78 commit 19dc957

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
os: [ubuntu-latest]
25-
python_version: ['3.8', '3.9', '3.10', '3.11']
25+
python_version: ['3.9', '3.13']
2626

2727
steps:
2828
- uses: actions/checkout@v2
@@ -75,7 +75,7 @@ jobs:
7575
fail-fast: false
7676
matrix:
7777
os: [macos-12]
78-
python_version: ['3.8', '3.9', '3.10', '3.11']
78+
python_version: ['3.9', '3.13']
7979

8080
steps:
8181
- uses: actions/checkout@v2
@@ -115,7 +115,7 @@ jobs:
115115
fail-fast: false
116116
matrix:
117117
os: [windows-latest]
118-
python-version: ['3.8', '3.9', '3.10', '3.11']
118+
python-version: ['3.9', '3.13']
119119
steps:
120120
- uses: actions/checkout@v2
121121

.github/workflows/packaging.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ jobs:
6262
fail-fast: false
6363
matrix:
6464
os: [ubuntu-latest, macos-12, windows-latest]
65-
python: ['3.8', '3.10']
65+
python: ['3.9', '3.13']
6666
include:
67-
- python: '3.8'
67+
- python: '3.9'
6868
dist: 'voila*.tar.gz'
69-
- python: '3.10'
69+
- python: '3.13'
7070
dist: 'voila*.whl'
7171
- os: windows-latest
7272
py_cmd: python

.github/workflows/update_galata_references.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python-version: [3.10]
28-
node-version: [18.x]
27+
python-version: [3.12]
28+
node-version: [22.x]
2929

3030
steps:
3131
- name: React to the triggering comment

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "hatchling.build"
1010
name = "voila"
1111
description = "Voilà turns Jupyter notebooks into standalone web applications"
1212
readme = "README.md"
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
authors = [
1515
{ name = "Voila Development Team" },
1616
]
@@ -28,11 +28,11 @@ classifiers = [
2828
"License :: OSI Approved :: BSD License",
2929
"Programming Language :: Python",
3030
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.7",
32-
"Programming Language :: Python :: 3.8",
3331
"Programming Language :: Python :: 3.9",
3432
"Programming Language :: Python :: 3.10",
3533
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: 3.12",
35+
"Programming Language :: Python :: 3.13",
3636
]
3737
dependencies = [
3838
"jupyter_client>=7.4.4,<9",

0 commit comments

Comments
 (0)