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
277 changes: 145 additions & 132 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,8 +7,8 @@ requires-poetry = ">=2.0.0"

[tool.poetry.dependencies]
python = "^3.10"
ops = "^3.5.0"
tenacity = "^9.1.2"
ops = "^3.6.0"
tenacity = "^9.1.4"
object-storage-charmlib = "^0.1.0"

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

[tool.poetry.group.format.dependencies]
ruff = "^0.14.10"
ruff = "^0.15.8"

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

[tool.poetry.group.lint.dependencies]
ruff = "^0.14.10"
codespell = "^2.4.1"
ruff = "^0.15.8"
codespell = "^2.4.2"

[tool.poetry.group.unit.dependencies]
coverage = { extras = ["toml"], version = "^7.13.0" }
coverage = { extras = ["toml"], version = "^7.13.5" }
pytest = "^8.4.2"
pytest-asyncio = "*"
ops = { version = ">=3.5.0", extras = ["testing"] }
ops = { version = ">=3.6.0", extras = ["testing"] }

[tool.poetry.group.integration.dependencies]
pytest = "^8.4.2"
Expand Down
347 changes: 167 additions & 180 deletions gcs/poetry.lock

Large diffs are not rendered by default.

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

[tool.poetry.dependencies]
python = "^3.11"
ops = "^3.5.0"
tenacity = "^9.1.2"
ops = "^3.6.0"
tenacity = "^9.1.4"
pydantic = "^2.12.5"
google-cloud-storage = "^3.7.0"
google-auth = "^2.45.0"
google-cloud-storage = "^3.10.1"
google-auth = "^2.49.1"
requests = "^2.32.5"
typing-extensions = "^4.15.0"
data-platform-helpers = ">=0.1.7"
Expand All @@ -24,30 +24,30 @@ cosl = "^0.0.51"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.14.10"
ruff = "^0.15.8"

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

[tool.poetry.group.lint.dependencies]
ruff = "^0.14.10"
codespell = "^2.4.1"
ruff = "^0.15.8"
codespell = "^2.4.2"

[tool.poetry.group.unit.dependencies]
coverage = { extras = ["toml"], version = "^7.13.0" }
coverage = { extras = ["toml"], version = "^7.13.5" }
pytest = "^8.4.2"
pytest-asyncio = "*"
ops = { version = ">=3.5.0", extras = ["testing"] }
ops = { version = ">=3.6.0", extras = ["testing"] }

[tool.poetry.group.integration.dependencies]
pytest = "^8.4.2"
jubilant = "^1.6.2"
jubilant = "^1.7.0"
juju = "^3.6.0.0"

# Testing tools configuration

[tool.poetry.group.dev.dependencies]
jubilant = "^1.6.2"
jubilant = "^1.7.0"
pytest = "^8.4.2"
pytest-asyncio = "^1.3.0"

Expand Down
10 changes: 5 additions & 5 deletions lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ description = "Common charm lib for providers and requirers of object storage re

requires-python = ">=3.8"
dependencies = [
"ops>=2.0.0"
"ops>=2.23.2"
]

[dependency-groups]
format = [
"ruff>=0.14.10"
"ruff>=0.15.8"
]
lint = [
"ruff>=0.14.10",
"codespell>=2.4.1",
"ruff>=0.15.8",
"codespell>=2.4.2",
]

[tool.poetry.group.format]
Expand Down Expand Up @@ -54,7 +54,7 @@ mccabe.max-complexity = 10


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

[tool.poetry]
Expand Down
318 changes: 167 additions & 151 deletions s3/poetry.lock

Large diffs are not rendered by default.

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

[tool.poetry.dependencies]
python = "^3.10"
ops = ">=3.5.0"
ops = ">=3.6.0"
# TODO: Move into charm-libs groups after canonical/data-platform-libs#201 is merged
pydantic = "^2.12.5"
tenacity = "^9.1.2"
boto3 = ">=1.42.51"
tenacity = "^9.1.4"
boto3 = ">=1.42.77"
data-platform-helpers = "^0.1.7"
object-storage-charmlib = "^0.1.0"

Expand All @@ -21,26 +21,26 @@ object-storage-charmlib = "^0.1.0"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.14.10"
ruff = "^0.15.8"

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

[tool.poetry.group.lint.dependencies]
ruff = "^0.14.10"
codespell = "^2.4.1"
ruff = "^0.15.8"
codespell = "^2.4.2"
mypy = "^1.19.1"
types-boto3 = { extras = ["s3"], version = "^1.42.13" }
types-boto3 = { extras = ["s3"], version = "^1.42.77" }

[tool.poetry.group.unit.dependencies]
coverage = { extras = ["toml"], version = "^7.13.0" }
coverage = { extras = ["toml"], version = "^7.13.5" }
pytest = "^8.4.2"
pytest-asyncio = "*"
ops = { version = ">=3.5.0", extras = ["testing"] }
ops = { version = ">=3.6.0", extras = ["testing"] }

[tool.poetry.group.integration.dependencies]
pytest = "^8.4.2"
jubilant = "^1.6.2"
jubilant = "^1.7.0"

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