Skip to content

Commit 9b198af

Browse files
Version 2025.9.2
1 parent c1bb22c commit 9b198af

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

pyproject.toml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "distributed"
77
description = "Distributed scheduler for Dask"
8-
maintainers = [{name = "Matthew Rocklin", email = "mrocklin@gmail.com"}]
9-
license = {text = "BSD-3-Clause"}
8+
maintainers = [{ name = "Matthew Rocklin", email = "mrocklin@gmail.com" }]
9+
license = { text = "BSD-3-Clause" }
1010
classifiers = [
1111
"Development Status :: 5 - Production/Stable",
1212
"Intended Audience :: Developers",
@@ -28,7 +28,7 @@ requires-python = ">=3.10"
2828
dependencies = [
2929
"click >= 8.0",
3030
"cloudpickle >= 3.0.0",
31-
"dask == 2025.9.1",
31+
"dask == 2025.9.2",
3232
"jinja2 >= 2.10.3",
3333
"locket >= 1.0.0",
3434
"msgpack >= 1.0.2",
@@ -68,17 +68,18 @@ exclude = ["*tests*"]
6868
namespaces = false
6969

7070
[tool.setuptools.package-data]
71-
"*" = [
72-
"templates/index.html",
73-
"template.html",
74-
]
75-
distributed = [
76-
"http/templates/*.html",
77-
"py.typed",
78-
]
71+
"*" = ["templates/index.html", "template.html"]
72+
distributed = ["http/templates/*.html", "py.typed"]
7973

8074
[tool.isort]
81-
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "DISTRIBUTED", "FIRSTPARTY", "LOCALFOLDER"]
75+
sections = [
76+
"FUTURE",
77+
"STDLIB",
78+
"THIRDPARTY",
79+
"DISTRIBUTED",
80+
"FIRSTPARTY",
81+
"LOCALFOLDER",
82+
]
8283
profile = "black"
8384
skip_gitignore = true
8485
force_to_top = ["true"]
@@ -161,11 +162,11 @@ minversion = "6"
161162
markers = [
162163
"ci1: marks tests as belonging to 1 out of 2 partitions to run on CI ('-m \"not ci1\"' for second partition)",
163164
"extra_packages: marks tests that require a special dependency to run.",
164-
"slow: marks tests as slow (deselected by default", # select with '--runslow')
165+
"slow: marks tests as slow (deselected by default", # select with '--runslow')
165166
"avoid_ci: marks tests as flaky or broken on CI on all OSs",
166167
"ipython: marks tests as exercising IPython",
167168
"gpu: marks tests we want to run on GPUs",
168-
"leaking: ignore leaked resources", # see pytest_resourceleaks.py for usage
169+
"leaking: ignore leaked resources", # see pytest_resourceleaks.py for usage
169170
"workerstate: deterministic test for the worker state machine. Automatically applied to all tests that use the 'ws' fixture.",
170171
]
171172
# pytest-timeout settings
@@ -248,7 +249,7 @@ exclude_lines = [
248249
"except ImportError",
249250
"@overload",
250251
"@abstractmethod",
251-
"@abc.abstractmethod"
252+
"@abc.abstractmethod",
252253
]
253254

254255
[tool.coverage.html]

0 commit comments

Comments
 (0)