Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump to 0.8.59 #819

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion darwin/version/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.58"
__version__ = "0.8.59"
45 changes: 15 additions & 30 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,27 @@
[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 <info@v7labs.com>"]
authors = [ "V7 <info@v7labs.com>",]
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"

[tool.isort]
profile = "black"

[tool.mypy]
plugins = ["pydantic.mypy"]
plugins = [ "pydantic.mypy",]
follow_imports = "silent"
warn_redundant_casts = true
warn_unused_ignores = true
Expand Down Expand Up @@ -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
Expand All @@ -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"
Expand Down