Skip to content

Commit

Permalink
Drop Python 3.6, test 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Feb 10, 2024
1 parent 45c84f1 commit fb2d482
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ jobs:
jupyterlab-major: '3'
- python-version: '3.10'
jupyterlab-major: '4'
- python-version: '3.12'
jupyterlab-major: '4'
runs-on: ubuntu-22.04
# Includes geckdriver and firefox
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md
# https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md
steps:
- uses: actions/checkout@v4

Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_version():
long_description_content_type="text/markdown",
cmdclass=cmdclass,
install_requires=["jupyter-server"],
python_requires=">=3.6",
python_requires=">=3.7",
zip_safe=False,
include_package_data=True,
platforms="Linux, Mac OS X, Windows",
Expand All @@ -103,9 +103,12 @@ def get_version():
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Framework :: Jupyter",
],
)
Expand Down

0 comments on commit fb2d482

Please sign in to comment.