Skip to content

Commit

Permalink
security patching (#17)
Browse files Browse the repository at this point in the history
* security patching

* stop supporting python 3.7
  • Loading branch information
sigmarkarl authored Sep 20, 2024
1 parent d490e68 commit 0238480
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 47 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/check-release.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/enforce-label.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
python-version: ["3.8", "3.9", "3.10", "pypy-3.8"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.11"]
python-version: ["3.8", "3.11"]
include:
- os: windows-latest
python-version: "3.9"
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
python_version: "3.7"
python_version: "3.8"
- name: Install miniumum versions
uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
- name: Run the unit tests
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def add_data_files(path):
version=VERSION,
description="Jupyter Server Example",
long_description=open("README.md").read(),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"jupyter_server",
"jinja2",
Expand Down
13 changes: 7 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -36,7 +35,7 @@ include_package_data = True
packages = find:
package_dir =
"" = "jupyter_server"
python_requires = >=3.7
python_requires = >=3.8
install_requires =
anyio>=3.1.0,<4
argon2-cffi
Expand Down

0 comments on commit 0238480

Please sign in to comment.