File tree 6 files changed +12
-8
lines changed
6 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -56,14 +56,14 @@ jobs:
56
56
# we test integration with. We can test against only one version and
57
57
# that would be fine.
58
58
#
59
- - python-version : " 3.9"
60
- go-version : " 1.20"
61
59
- python-version : " 3.10"
62
- go-version : " 1.21 "
60
+ go-version : " 1.20 "
63
61
- python-version : " 3.11"
64
62
go-version : " 1.21"
65
63
- python-version : " 3.12"
66
- go-version : " 1.21"
64
+ go-version : " 1.22"
65
+ - python-version : " 3.13"
66
+ go-version : " 1.23"
67
67
68
68
steps :
69
69
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 26
26
hooks :
27
27
- id : pyupgrade
28
28
args :
29
- - --py39 -plus
29
+ - --py310 -plus
30
30
31
31
# Autoformat: Python code
32
32
- repo : https://github.com/PyCQA/isort
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ def run(self):
255
255
package_data = package_data ,
256
256
install_requires = install_requires ,
257
257
extras_require = extras_require ,
258
- python_requires = ">=3.9 " ,
258
+ python_requires = ">=3.10 " ,
259
259
entry_points = {
260
260
"console_scripts" : [
261
261
"dask-gateway-server = dask_gateway_server.app:main" ,
Original file line number Diff line number Diff line change 48
48
package_data = {"dask_gateway" : ["*.yaml" ]},
49
49
install_requires = install_requires ,
50
50
extras_require = extras_require ,
51
- python_requires = ">=3.9 " ,
51
+ python_requires = ">=3.10 " ,
52
52
zip_safe = False ,
53
53
)
Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ### Breaking changes
6
+
7
+ - Requires Python 3.10+, up from 3.9
8
+
5
9
### 2024.1.0
6
10
7
11
([ full changelog] ( https://github.com/dask/dask-gateway/compare/2023.9.0...2024.1.0 ) )
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ profile = "black"
13
13
[tool .black ]
14
14
line-length = 88
15
15
target_version = [
16
- " py39" ,
17
16
" py310" ,
18
17
" py311" ,
19
18
" py312" ,
19
+ " py313" ,
20
20
]
21
21
22
22
You can’t perform that action at this time.
0 commit comments