Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
265 changes: 125 additions & 140 deletions azure_storage/poetry.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions azure_storage/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-poetry = ">=2.0.0"

[tool.poetry.dependencies]
python = "^3.10"
ops = "^3.7.0"
ops = "^3.7.1"
tenacity = "^9.1.4"
object-storage-charmlib = "^1.0.0"

Expand All @@ -18,23 +18,23 @@ cosl = "^0.0.51"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.15.11"
ruff = "^0.15.18"

[tool.poetry.group.lint]
optional = true

[tool.poetry.group.lint.dependencies]
ruff = "^0.15.11"
ruff = "^0.15.18"
codespell = "^2.4.2"

[tool.poetry.group.unit.dependencies]
coverage = { extras = ["toml"], version = "^7.13.5" }
pytest = "^9.0.3"
coverage = { extras = ["toml"], version = "^7.14.3" }
pytest = "^9.1.1"
pytest-asyncio = "*"
ops = { version = ">=3.7.0", extras = ["testing"] }
ops = { version = ">=3.7.1", extras = ["testing"] }

[tool.poetry.group.integration.dependencies]
pytest = "^9.0.3"
pytest = "^9.1.1"
pytest-operator = "^0.43.2"
juju = "^3.3.1.1"

Expand Down
565 changes: 275 additions & 290 deletions gcs/poetry.lock

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions gcs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ requires-poetry = ">=2.0.0"

[tool.poetry.dependencies]
python = "^3.10"
ops = "^3.7.0"
ops = "^3.7.1"
tenacity = "^9.1.4"
pydantic = "^2.13.3"
google-cloud-storage = "^3.10.1"
google-auth = "^2.49.2"
requests = "^2.33.1"
pydantic = "^2.13.4"
google-cloud-storage = "^3.12.0"
google-auth = "^2.55.0"
requests = "^2.34.2"
typing-extensions = "^4.15.0"
data-platform-helpers = ">=1.0.1"
data-platform-helpers = ">=1.1.0"
object-storage-charmlib = "^1.0.0"

[tool.poetry.group.charm-libs.dependencies]
Expand All @@ -24,32 +24,32 @@ cosl = "^0.0.51"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.15.11"
ruff = "^0.15.18"

[tool.poetry.group.lint]
optional = true

[tool.poetry.group.lint.dependencies]
ruff = "^0.15.11"
ruff = "^0.15.18"
codespell = "^2.4.2"

[tool.poetry.group.unit.dependencies]
coverage = { extras = ["toml"], version = "^7.13.5" }
pytest = "^9.0.3"
coverage = { extras = ["toml"], version = "^7.14.3" }
pytest = "^9.1.1"
pytest-asyncio = "*"
ops = { version = ">=3.7.0", extras = ["testing"] }
ops = { version = ">=3.7.1", extras = ["testing"] }

[tool.poetry.group.integration.dependencies]
pytest = "^9.0.3"
jubilant = "^1.8.0"
pytest = "^9.1.1"
jubilant = "^1.10.0"
juju = "^3.6.0.0"

# Testing tools configuration

[tool.poetry.group.dev.dependencies]
jubilant = "^1.8.0"
pytest = "^9.0.3"
pytest-asyncio = "^1.3.0"
jubilant = "^1.10.0"
pytest = "^9.1.1"
pytest-asyncio = "^1.4.0"

[tool.coverage.run]
branch = true
Expand Down
4 changes: 2 additions & 2 deletions lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ format = [
"ruff>=0.15.11"
]
lint = [
"ruff>=0.15.11",
"ruff>=0.15.18",
"codespell>=2.4.2",
]

Expand Down Expand Up @@ -59,7 +59,7 @@ mccabe.max-complexity = 10


[build-system]
requires = ["poetry-core>=2.3.2,<3.0.0"]
requires = ["poetry-core>=2.4.1,<3.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
Expand Down
1,435 changes: 712 additions & 723 deletions s3/poetry.lock

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions s3/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ requires-poetry = ">=2.0.0"

[tool.poetry.dependencies]
python = "^3.10"
ops = ">=3.7.0"
ops = ">=3.7.1"
# TODO: Move into charm-libs groups after canonical/data-platform-libs#201 is merged
pydantic = "^2.13.3"
pydantic = "^2.13.4"
tenacity = "^9.1.4"
boto3 = ">=1.42.95"
data-platform-helpers = "^1.0.1"
boto3 = ">=1.43.36"
data-platform-helpers = "^1.1.0"
object-storage-charmlib = "^1.0.0"

[tool.poetry.group.charm-libs.dependencies]
Expand All @@ -21,26 +21,26 @@ object-storage-charmlib = "^1.0.0"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.15.11"
ruff = "^0.15.18"

[tool.poetry.group.lint]
optional = true

[tool.poetry.group.lint.dependencies]
ruff = "^0.15.11"
ruff = "^0.15.18"
codespell = "^2.4.2"
mypy = "^1.20.2"
types-boto3 = { extras = ["s3"], version = "^1.42.95" }
types-boto3 = { extras = ["s3"], version = "^1.43.36" }

[tool.poetry.group.unit.dependencies]
coverage = { extras = ["toml"], version = "^7.13.5" }
pytest = "^9.0.3"
coverage = { extras = ["toml"], version = "^7.14.3" }
pytest = "^9.1.1"
pytest-asyncio = "*"
ops = { version = ">=3.7.0", extras = ["testing"] }
ops = { version = ">=3.7.1", extras = ["testing"] }

[tool.poetry.group.integration.dependencies]
pytest = "^9.0.3"
jubilant = "^1.8.0"
pytest = "^9.1.1"
jubilant = "^1.10.0"

[tool.coverage.run]
branch = true
Expand Down