Update dependencies in pyproject.toml
- Updated matplotlib from version 3.8.0 to 3.9.1 - Updated reportlab from version 4.0.6 to 4.2.2 - Updated black from version 23.3.0 to 23.12.1 - Updated pytest from version 7.4.2 to 7.4.4 - Updated python-dotenv from version 1.0.0 to 1.0.1 - Added vulture dependency with version 2.11
This commit is contained in:
Generated
+12
-1
@@ -1616,6 +1616,17 @@ h2 = ["h2 (>=4,<5)"]
|
|||||||
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"]
|
||||||
zstd = ["zstandard (>=0.18.0)"]
|
zstd = ["zstandard (>=0.18.0)"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "vulture"
|
||||||
|
version = "2.11"
|
||||||
|
description = "Find dead code"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.8"
|
||||||
|
files = [
|
||||||
|
{file = "vulture-2.11-py2.py3-none-any.whl", hash = "sha256:12d745f7710ffbf6aeb8279ba9068a24d4e52e8ed333b8b044035c9d6b823aba"},
|
||||||
|
{file = "vulture-2.11.tar.gz", hash = "sha256:f0fbb60bce6511aad87ee0736c502456737490a82d919a44e6d92262cb35f1c2"},
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "websockets"
|
name = "websockets"
|
||||||
version = "11.0.3"
|
version = "11.0.3"
|
||||||
@@ -1880,4 +1891,4 @@ multidict = ">=4.0"
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = "^3.11"
|
python-versions = "^3.11"
|
||||||
content-hash = "fa9a19381de95ee7cd6798a3b4707ed3fbe2f2845e449cdcd652d5670e4038cf"
|
content-hash = "d8792ab3203910f2a054288ebb3e8d05e1deca69549c2fdf475aa7ffd2878b40"
|
||||||
|
|||||||
+7
-6
@@ -8,18 +8,19 @@ packages = [{ include = "src" }]
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11"
|
python = "^3.11"
|
||||||
matplotlib = "^3.8.0"
|
matplotlib = "^3.9.1"
|
||||||
seaborn = "^0.13.0"
|
seaborn = "^0.13.0"
|
||||||
reportlab = "^4.0.6"
|
reportlab = "^4.2.2"
|
||||||
mypy = "^1.11.1"
|
mypy = "^1.11.1"
|
||||||
pydantic = "^2.8.2"
|
pydantic = "^2.8.2"
|
||||||
specklepy = "^2.19.5"
|
specklepy = "^2.19.5"
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
black = "^23.3.0"
|
black = "^23.12.1"
|
||||||
ruff = "^0.0.271"
|
ruff = "^0.0.271"
|
||||||
pytest = "^7.4.2"
|
pytest = "^7.4.4"
|
||||||
python-dotenv = "^1.0.0"
|
python-dotenv = "^1.0.1"
|
||||||
|
vulture = "^2.11"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core"]
|
||||||
@@ -36,4 +37,4 @@ select = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[tool.ruff.pydocstyle]
|
[tool.ruff.pydocstyle]
|
||||||
convention = "google"
|
convention = "google"
|
||||||
|
|||||||
+1087
File diff suppressed because it is too large
Load Diff
+1
-2
@@ -1,8 +1,7 @@
|
|||||||
from pydantic import Field
|
from pydantic import Field
|
||||||
from speckle_automate import (
|
from speckle_automate import (
|
||||||
AutomateBase,
|
AutomateBase,
|
||||||
AutomationContext,
|
AutomationContext
|
||||||
execute_automate_function,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
from objects.objects import (
|
from objects.objects import (
|
||||||
|
|||||||
Reference in New Issue
Block a user