Skip to content

Commit 2bd084d

Browse files
authored
Drop Python 3.8 (#151)
* Drop Python 3.8 * fix typo
1 parent c682acd commit 2bd084d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
fail-fast: false
8686
matrix:
8787
os: [ubuntu, windows, macos]
88-
python-version: ['3.8', '3.11']
88+
python-version: ['3.9', '3.13']
8989

9090
steps:
9191
- name: Install Python
@@ -107,12 +107,12 @@ jobs:
107107
sudo rm -rf $(which node)
108108
109109
- name: Install Built Package (wheel)
110-
if: matrix.python-version == '3.11'
110+
if: matrix.python-version == '3.13'
111111
run: |-
112112
python -m pip install -v -r dist/requirements-wheel.txt
113113
114114
- name: Install Built Package (sdist)
115-
if: matrix.python-version == '3.8'
115+
if: matrix.python-version == '3.9'
116116
run: |-
117117
python -m pip install -v -r dist/requirements-sdist.txt
118118

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ keywords = [
2222
"pyodide",
2323
]
2424
license = { file = "LICENSE" }
25-
requires-python = ">=3.8"
25+
requires-python = ">=3.9"
2626
classifiers = [
2727
"Framework :: Jupyter",
2828
"Framework :: Jupyter :: JupyterLab",
2929
"Framework :: Jupyter :: JupyterLab :: 4",
3030
"License :: OSI Approved :: BSD License",
3131
"Programming Language :: Python",
3232
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
3736
"Programming Language :: Python :: 3.12",
37+
"Programming Language :: Python :: 3.13",
3838
]
3939
dependencies = [
4040
"jupyterlite-core >=0.5.0a0,<0.6.0",

0 commit comments

Comments
 (0)