From 00197851199f3941febd5d70cbbecc956ec48d9c Mon Sep 17 00:00:00 2001 From: John Wilkie Date: Thu, 18 Apr 2024 16:20:50 +0100 Subject: [PATCH] Version bump to 0.8.59 --- darwin/version/__init__.py | 2 +- pyproject.toml | 45 +++++++++++++------------------------- 2 files changed, 16 insertions(+), 31 deletions(-) diff --git a/darwin/version/__init__.py b/darwin/version/__init__.py index 10b1567f3..030200142 100644 --- a/darwin/version/__init__.py +++ b/darwin/version/__init__.py @@ -1 +1 @@ -__version__ = "0.8.58" +__version__ = "0.8.59" diff --git a/pyproject.toml b/pyproject.toml index bd6dc4d55..fda43302e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,22 +1,19 @@ [build-system] -requires = ["poetry-core"] +requires = [ "poetry-core",] build-backend = "poetry.core.masonry.api" [tool.poetry] name = "darwin-py" -version = "0.8.58" +version = "0.8.59" description = "Library and command line interface for darwin.v7labs.com" homepage = "https://docs.v7labs.com/reference/getting-started-2" documentation = "https://darwin-py-sdk.v7labs.com/index.html" repository = "https://github.com/v7labs/darwin-py" -authors = ["V7 "] +authors = [ "V7 ",] readme = "README.md" license = "MIT" keywords = [] -classifiers = [ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", -] +classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",] [[tool.poetry.packages]] include = "darwin" @@ -24,7 +21,7 @@ include = "darwin" profile = "black" [tool.mypy] -plugins = ["pydantic.mypy"] +plugins = [ "pydantic.mypy",] follow_imports = "silent" warn_redundant_casts = true warn_unused_ignores = true @@ -54,13 +51,13 @@ warn_required_dynamic_aliases = true warn_untyped_fields = true [tool.ruff] -select = ["E", "F", "C"] -ignore = ["E203", "E402", "E501"] +select = [ "E", "F", "C",] +ignore = [ "E203", "E402", "E501",] line-length = 88 [tool.flake8] max-line-length = 88 -ignore = ["E203", "W503", "E402"] +ignore = [ "E203", "W503", "E402",] [tool.black] line-length = 88 @@ -86,30 +83,18 @@ pyyaml = "^6.0.1" json-stream = "^2.3.2" [tool.poetry.extras] -dev = [ - "black", - "isort", - "flake8", - "mypy", - "debugpy", - "responses", - "pytest", - "flake8-pyproject", - "pytest-rerunfailures", - "ruff", - "validate-pyproject", -] -test = ["responses", "pytest", "flake8-pyproject"] -ml = ["torch", "torchvision", "scikit-learn", "albumentations"] -medical = ["nibabel", "connected-components-3d"] -ocv = ["opencv-python-headless"] +dev = [ "black", "isort", "flake8", "mypy", "debugpy", "responses", "pytest", "flake8-pyproject", "pytest-rerunfailures", "ruff", "validate-pyproject",] +test = [ "responses", "pytest", "flake8-pyproject",] +ml = [ "torch", "torchvision", "scikit-learn", "albumentations",] +medical = [ "nibabel", "connected-components-3d",] +ocv = [ "opencv-python-headless",] [tool.poetry.scripts] darwin = "darwin.cli:main" [tool.ruff.per-file-ignores] -"__init__.py" = ["E402", "F401"] -"**/{tests,docs,tools}/*" = ["E402", "F403"] +"__init__.py" = [ "E402", "F401",] +"**/{tests,docs,tools}/*" = [ "E402", "F403",] [tool.poetry.dependencies.nibabel] version = "^5.0.0"