Skip to content

Commit 8ce6ff5

Browse files
authored
Merge pull request #90 from consideRatio/pr/require-py38
Require python 3.8+, up from 3.6+
2 parents 5cdf4d8 + babd074 commit 8ce6ff5

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ skip-string-normalization = true
2626
# target-version should be all supported versions, see
2727
# https://github.com/psf/black/issues/751#issuecomment-473066811
2828
target_version = [
29-
"py36",
30-
"py37",
3129
"py38",
3230
"py39",
3331
"py310",
3432
"py311",
33+
"py312",
3534
]
3635

3736
# tbump is used to simplify and standardize the release process when updating

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def run(self):
7676
"Source": "https://github.com/jupyterhub/jupyter-remote-desktop-proxy/",
7777
"Tracker": "https://github.com/jupyterhub/jupyter-remote-desktop-proxy/issues",
7878
},
79-
python_requires=">=3.6",
79+
python_requires=">=3.8",
8080
url="https://jupyter.org",
8181
zip_safe=False,
8282
cmdclass={

0 commit comments

Comments
 (0)