Skip to content

Commit 9ec4493

Browse files
committed
Require python 3.10+, up from 3.9+
1 parent 74f64ef commit 9ec4493

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

.github/workflows/test.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ jobs:
5656
# we test integration with. We can test against only one version and
5757
# that would be fine.
5858
#
59-
- python-version: "3.9"
60-
go-version: "1.20"
6159
- python-version: "3.10"
62-
go-version: "1.21"
60+
go-version: "1.20"
6361
- python-version: "3.11"
6462
go-version: "1.21"
6563
- python-version: "3.12"
66-
go-version: "1.21"
64+
go-version: "1.22"
65+
- python-version: "3.13"
66+
go-version: "1.23"
6767

6868
steps:
6969
- uses: actions/checkout@v4

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repos:
2626
hooks:
2727
- id: pyupgrade
2828
args:
29-
- --py39-plus
29+
- --py310-plus
3030

3131
# Autoformat: Python code
3232
- repo: https://github.com/PyCQA/isort

dask-gateway-server/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def run(self):
255255
package_data=package_data,
256256
install_requires=install_requires,
257257
extras_require=extras_require,
258-
python_requires=">=3.9",
258+
python_requires=">=3.10",
259259
entry_points={
260260
"console_scripts": [
261261
"dask-gateway-server = dask_gateway_server.app:main",

dask-gateway/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
package_data={"dask_gateway": ["*.yaml"]},
4949
install_requires=install_requires,
5050
extras_require=extras_require,
51-
python_requires=">=3.9",
51+
python_requires=">=3.10",
5252
zip_safe=False,
5353
)

docs/source/changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Breaking changes
6+
7+
- Requires Python 3.10+, up from 3.9
8+
59
### 2024.1.0
610

711
([full changelog](https://github.com/dask/dask-gateway/compare/2023.9.0...2024.1.0))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ profile = "black"
1313
[tool.black]
1414
line-length = 88
1515
target_version = [
16-
"py39",
1716
"py310",
1817
"py311",
1918
"py312",
19+
"py313",
2020
]
2121

2222

0 commit comments

Comments
 (0)