Skip to content

Commit

Permalink
chore: Add back support to py38 (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
xmnlab authored Apr 9, 2024
1 parent ac5c57c commit 9e0dc41
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11]
node-version: [18]

runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
name = "mkdocs-jupyter"
description = "Use Jupyter in mkdocs websites"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.8"
license = { "text" = "Apache-2.0" }
keywords = ["mkdocs", "jupyter", "jupyterlab", "notebooks", "documentation"]
authors = [{ name = "Daniel Rodriguez", email = "daniel@danielfrg.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ idna==3.4
importlib-metadata==6.8.0
iniconfig==2.0.0
ipykernel==6.24.0
ipython==8.14.0
ipython==8.12.0; python_version < '3.9'
ipython==8.14.0; python_version >= '3.9'
isoduration==20.11.0
isort==5.12.0
jedi==0.18.2
Expand Down
3 changes: 2 additions & 1 deletion requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ ghp-import==2.1.0
idna==3.4
importlib-metadata==6.8.0
ipykernel==6.24.0
ipython==8.14.0
ipython==8.12.0; python_version < '3.9'
ipython==8.14.0; python_version >= '3.9'
jedi==0.18.2
jinja2==3.1.2
jsonschema==4.17.3
Expand Down

0 comments on commit 9e0dc41

Please sign in to comment.