Skip to content

Commit

Permalink
Drop Python 3.8 (#151)
Browse files Browse the repository at this point in the history
* Drop Python 3.8

* fix typo
  • Loading branch information
jtpio authored Dec 18, 2024
1 parent c682acd commit 2bd084d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
python-version: ['3.8', '3.11']
python-version: ['3.9', '3.13']

steps:
- name: Install Python
Expand All @@ -107,12 +107,12 @@ jobs:
sudo rm -rf $(which node)
- name: Install Built Package (wheel)
if: matrix.python-version == '3.11'
if: matrix.python-version == '3.13'
run: |-
python -m pip install -v -r dist/requirements-wheel.txt
- name: Install Built Package (sdist)
if: matrix.python-version == '3.8'
if: matrix.python-version == '3.9'
run: |-
python -m pip install -v -r dist/requirements-sdist.txt
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ keywords = [
"pyodide",
]
license = { file = "LICENSE" }
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 4",
"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 = [
"jupyterlite-core >=0.5.0a0,<0.6.0",
Expand Down

0 comments on commit 2bd084d

Please sign in to comment.