Skip to content

Commit c128fa0

Browse files
authored
Version bump to 0.8.59 (#819)
1 parent 75fa00d commit c128fa0

File tree

2 files changed

+16
-31
lines changed

2 files changed

+16
-31
lines changed

darwin/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.58"
1+
__version__ = "0.8.59"

pyproject.toml

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,27 @@
11
[build-system]
2-
requires = ["poetry-core"]
2+
requires = [ "poetry-core",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "darwin-py"
7-
version = "0.8.58"
7+
version = "0.8.59"
88
description = "Library and command line interface for darwin.v7labs.com"
99
homepage = "https://docs.v7labs.com/reference/getting-started-2"
1010
documentation = "https://darwin-py-sdk.v7labs.com/index.html"
1111
repository = "https://github.com/v7labs/darwin-py"
12-
authors = ["V7 <[email protected]>"]
12+
authors = [ "V7 <[email protected]>",]
1313
readme = "README.md"
1414
license = "MIT"
1515
keywords = []
16-
classifiers = [
17-
"Programming Language :: Python :: 3",
18-
"License :: OSI Approved :: MIT License",
19-
]
16+
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",]
2017
[[tool.poetry.packages]]
2118
include = "darwin"
2219

2320
[tool.isort]
2421
profile = "black"
2522

2623
[tool.mypy]
27-
plugins = ["pydantic.mypy"]
24+
plugins = [ "pydantic.mypy",]
2825
follow_imports = "silent"
2926
warn_redundant_casts = true
3027
warn_unused_ignores = true
@@ -54,13 +51,13 @@ warn_required_dynamic_aliases = true
5451
warn_untyped_fields = true
5552

5653
[tool.ruff]
57-
select = ["E", "F", "C"]
58-
ignore = ["E203", "E402", "E501"]
54+
select = [ "E", "F", "C",]
55+
ignore = [ "E203", "E402", "E501",]
5956
line-length = 88
6057

6158
[tool.flake8]
6259
max-line-length = 88
63-
ignore = ["E203", "W503", "E402"]
60+
ignore = [ "E203", "W503", "E402",]
6461

6562
[tool.black]
6663
line-length = 88
@@ -86,30 +83,18 @@ pyyaml = "^6.0.1"
8683
json-stream = "^2.3.2"
8784

8885
[tool.poetry.extras]
89-
dev = [
90-
"black",
91-
"isort",
92-
"flake8",
93-
"mypy",
94-
"debugpy",
95-
"responses",
96-
"pytest",
97-
"flake8-pyproject",
98-
"pytest-rerunfailures",
99-
"ruff",
100-
"validate-pyproject",
101-
]
102-
test = ["responses", "pytest", "flake8-pyproject"]
103-
ml = ["torch", "torchvision", "scikit-learn", "albumentations"]
104-
medical = ["nibabel", "connected-components-3d"]
105-
ocv = ["opencv-python-headless"]
86+
dev = [ "black", "isort", "flake8", "mypy", "debugpy", "responses", "pytest", "flake8-pyproject", "pytest-rerunfailures", "ruff", "validate-pyproject",]
87+
test = [ "responses", "pytest", "flake8-pyproject",]
88+
ml = [ "torch", "torchvision", "scikit-learn", "albumentations",]
89+
medical = [ "nibabel", "connected-components-3d",]
90+
ocv = [ "opencv-python-headless",]
10691

10792
[tool.poetry.scripts]
10893
darwin = "darwin.cli:main"
10994

11095
[tool.ruff.per-file-ignores]
111-
"__init__.py" = ["E402", "F401"]
112-
"**/{tests,docs,tools}/*" = ["E402", "F403"]
96+
"__init__.py" = [ "E402", "F401",]
97+
"**/{tests,docs,tools}/*" = [ "E402", "F403",]
11398

11499
[tool.poetry.dependencies.nibabel]
115100
version = "^5.0.0"

0 commit comments

Comments
 (0)