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
4 changes: 2 additions & 2 deletions common/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name = "common"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"ops>=2.9.0",
"charm-refresh>=3.1.0.2",
"ops>=2.23.1",
"charm-refresh>=3.1.1.2",
"charm-api>=0.1.2",
"requests>=2.32.5",
"tenacity>=9.1.2",
Expand Down
22 changes: 11 additions & 11 deletions kubernetes/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.10"
common = {path = "../common", develop = true}
# breaking change in ops 2.10.0: https://github.com/canonical/operator/pull/1091#issuecomment-1888644075
ops = "^2.9.0, <2.10"
lightkube = "^0.17.2"
lightkube = "^0.18.0"
tenacity = "^9.1.2"
charm-refresh = "^3.1.0.2"

Expand All @@ -31,34 +31,34 @@ jsonschema = "*"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.12.11"
ruff = "^0.14.8"

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

[tool.poetry.group.lint.dependencies]
ruff = "^0.12.11"
ruff = "^0.14.8"
codespell = "^2.4.1"

[tool.poetry.group.unit.dependencies]
pytest = "^8.4.1"
pytest = "^8.4.2"
pytest-xdist = "^3.8.0"
pytest-forked = "^1.6.0" # Workaround to deal with memory leaks in scenario tests
pytest-cov = "^6.2.1"
ops-scenario = "^6.0.3, <6.0.4" # 6.0.4 requires ops >= 2.12
pytest-cov = "^6.3.0"
ops-scenario = "^6.1.7, <6.1.8" # 6.0.4 requires ops >= 2.12
ops = "^2.9.0"

[tool.poetry.group.integration.dependencies]
pytest = "^8.4.1"
pytest-operator = "^0.43.1"
pytest = "^8.4.2"
pytest-operator = "^0.43.2"
requests = "^2.32.5"
juju = "^3.6.0.0"
mysql-connector-python = "^9.5.0"
pyyaml = "^6.0.2"
pyyaml = "^6.0.3"
tenacity = "^9.1.2"
allure-pytest = "^2.15.0"
allure-pytest = "^2.15.2"
allure-pytest-default-results = "^0.1.3"
tomli = "^2.2.1"
tomli = "^2.3.0"
tomli-w = "^1.2.0"

[tool.poetry.group.build-refresh-version]
Expand Down
16 changes: 8 additions & 8 deletions machines/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,31 @@ opentelemetry-exporter-otlp-proto-http = "1.21.0"
optional = true

[tool.poetry.group.format.dependencies]
ruff = "^0.12.11"
ruff = "^0.14.8"

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

[tool.poetry.group.lint.dependencies]
ruff = "^0.12.11"
ruff = "^0.14.8"
codespell = "^2.4.1"

[tool.poetry.group.unit.dependencies]
pytest = "^8.4.1"
pytest = "^8.4.2"
pytest-xdist = "^3.8.0"
pytest-cov = "^6.2.1"
ops-scenario = "^6.0.3, <6.0.4" # 6.0.4 requires ops >= 2.12
pytest-cov = "^6.3.0"
ops-scenario = "^6.1.7, <6.1.8" # 6.0.4 requires ops >= 2.12

[tool.poetry.group.integration.dependencies]
pytest = "^8.4.1"
pytest-operator = "^0.43.1"
pytest = "^8.4.2"
pytest-operator = "^0.43.2"
requests = "^2.32.5"
juju = "^3.6.0.0"
mysql-connector-python = "~8.0.33"
tenacity = "^9.1.2"
ops = "^2.9.0"
allure-pytest-default-results = "^0.1.3"
tomli = "^2.2.1"
tomli = "^2.3.0"
tomli-w = "^1.2.0"

[tool.poetry.group.build-refresh-version]
Expand Down
Loading