Skip to content

Commit ba14270

Browse files
committed
Require JupyterHub>=4.1.6 and Python 3.9
1 parent bd5fe95 commit ba14270

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323

2424
jobs:
2525
build-release:
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-latest
2727

2828
steps:
2929
- uses: actions/checkout@v4

.github/workflows/test.yaml

+4-8
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,19 @@ env:
2525

2626
jobs:
2727
test:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-latest
2929
timeout-minutes: 10
3030

3131
strategy:
3232
fail-fast: false
3333
matrix:
3434
include:
35-
- python-version: "3.8"
36-
pip-install-spec: "jupyterhub==2.3.1 sqlalchemy==1.*"
3735
- python-version: "3.9"
38-
pip-install-spec: "jupyterhub==3.*"
39-
- python-version: "3.10"
4036
pip-install-spec: "jupyterhub==4.*"
41-
- python-version: "3.11"
42-
pip-install-spec: "jupyterhub==5.*"
4337
- python-version: "3.12"
44-
pip-install-spec: "jupyterhub"
38+
pip-install-spec: "jupyterhub==5.*"
39+
- python-version: "3.x"
40+
pip-install-spec: "--pre jupyterhub"
4541

4642
steps:
4743
- uses: actions/checkout@v4

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
hooks:
1616
- id: pyupgrade
1717
args:
18-
- --py38-plus
18+
- --py39-plus
1919

2020
# Autoformat: Python code
2121
- repo: https://github.com/PyCQA/autoflake

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ profile = "black"
2525
# target-version should be all supported versions, see
2626
# https://github.com/psf/black/issues/751#issuecomment-473066811
2727
target_version = [
28-
"py38",
2928
"py39",
3029
"py310",
3130
"py311",

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
author_email="[email protected]",
1212
license="3 Clause BSD",
1313
packages=["ldapauthenticator"],
14-
python_requires=">=3.8",
14+
python_requires=">=3.9",
1515
install_requires=[
16-
"jupyterhub>=2.3.1",
16+
"jupyterhub>=4.1.6",
1717
"ldap3",
1818
"tornado",
1919
"traitlets",

0 commit comments

Comments
 (0)