Skip to content

Commit 9766b75

Browse files
committed
breaking: require Python 3.8, from Python 3.6
1 parent 4176ecd commit 9766b75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
hooks:
1616
- id: pyupgrade
1717
args:
18-
- --py37-plus
18+
- --py38-plus
1919

2020
# Autoformat: Python code
2121
- repo: https://github.com/psf/black

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
# target-version should be all supported versions
3-
target-version = ['py37', 'py38', 'py39', 'py310']
3+
target-version = ["py38", "py39", "py310", "py311"]
44

55
[tool.isort]
66
profile = "black"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
name="binderhub",
4343
version=versioneer.get_version(),
4444
cmdclass=versioneer.get_cmdclass(cmdclass),
45-
python_requires=">=3.6",
45+
python_requires=">=3.8",
4646
author="Project Jupyter Contributors",
4747
author_email="[email protected]",
4848
license="BSD",

0 commit comments

Comments
 (0)