Skip to content

Commit 9a23f1d

Browse files
Update Python dependencies (#126)
* Update Python dependencies * Holding httpcore * Enforcing httpx versions instead of ignoring pinned deps --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dragomir Penev <[email protected]>
1 parent 5ce93a2 commit 9a23f1d

File tree

6 files changed

+50
-44
lines changed

6 files changed

+50
-44
lines changed

charmcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ parts:
1515
- cargo
1616
- pkg-config
1717
charm-binary-python-packages:
18-
- psycopg2-binary==2.9.5 # renovate
18+
- psycopg2-binary==2.9.6 # renovate

poetry.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jinja2 = "3.1.2"
2222
lightkube = "0.12.0"
2323
lightkube-models = "1.26.0.4"
2424
requests = "2.28.2"
25-
boto3 = "1.26.102"
25+
boto3 = "1.26.106"
2626
# psycopg2 = "^2.9.5" # Injected in charmcraft.yaml
2727

2828
[tool.poetry.group.format]
@@ -50,18 +50,18 @@ optional = true
5050
[tool.poetry.group.unit.dependencies]
5151
coverage = {extras = ["toml"], version = "7.2.2"}
5252
pytest = "7.2.2"
53-
pytest-asyncio = "0.20.3"
54-
psycopg2 = {version = "2.9.5", extras = ["binary"]}
53+
pytest-asyncio = "0.21.0"
54+
psycopg2 = {version = "2.9.6", extras = ["binary"]}
5555

5656
[tool.poetry.group.integration]
5757
optional = true
5858

5959
[tool.poetry.group.integration.dependencies]
6060
lightkube = "^0.12.0"
6161
pytest = "7.2.2"
62-
pytest-operator = "0.23.0"
62+
pytest-operator = "0.26.0"
6363
juju = "2.9.42.1" # Latest juju 2
64-
psycopg2 = {version = "2.9.5", extras = ["binary"]}
64+
psycopg2 = {version = "2.9.6", extras = ["binary"]}
6565

6666
[tool.poetry.group.ha_charm]
6767
optional = true

renovate.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
}, {
2525
"matchPackageNames": ["juju"],
2626
"allowedVersions": "<3.0.0"
27+
}, {
28+
"matchPackageNames": ["httpcore"],
29+
"allowedVersions": "<0.17.0"
30+
}, {
31+
"matchPackageNames": ["rfc3986"],
32+
"allowedVersions": "<2.0.0"
2733
}
2834
],
2935
"regexManagers": [
@@ -42,5 +48,5 @@
4248
}
4349
],
4450
"ignorePaths": [],
45-
"ignoreDeps": ["rfc3986"]
51+
"ignoreDeps": []
4652
}

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ anyio==3.6.2 ; python_full_version >= "3.8.10" and python_full_version < "4.0.0"
44
attrs==22.2.0 ; python_full_version >= "3.8.10" and python_full_version < "4.0.0" \
55
--hash=sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836 \
66
--hash=sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99
7-
boto3==1.26.102 ; python_full_version >= "3.8.10" and python_full_version < "4.0.0" \
8-
--hash=sha256:043f8981d10c4e7c48736df4381dac557b46c5b369b0a450d8f3d7f5fdd24db5 \
9-
--hash=sha256:b00f416832bc59863b96175045d2ebe067d9222289bce677c48fd72c006eaaad
10-
botocore==1.29.105 ; python_full_version >= "3.8.10" and python_full_version < "4.0.0" \
11-
--hash=sha256:06a2838daad3f346cba5460d0d3deb198225b556ff9ca729798d787fadbdebde \
12-
--hash=sha256:17c82391dfd6aaa8f96fbbb08cad2c2431ef3cda0ece89e6e6ba444c5eed45c2
7+
boto3==1.26.106 ; python_full_version >= "3.8.10" and python_full_version < "4.0.0" \
8+
--hash=sha256:53d449bc3445da0a8812857f3e24e143dc56573bc365f36a5610900b09d06faf \
9+
--hash=sha256:bdabab7ad27ae86de22a8687cbf55d8a152c6d6f178ffb452e560bac0be957a7
10+
botocore==1.29.106 ; python_full_version >= "3.8.10" and python_full_version < "4.0.0" \
11+
--hash=sha256:d50df9a39da1b0e475727c6c2ba141b44d9df527d3dc1936b264ee4cb1525ab7 \
12+
--hash=sha256:eaaa669fe33a0ef2e9d345a98ed0befac1ea33395d63620913c1bb738c387d4d
1313
certifi==2022.12.7 ; python_full_version >= "3.8.10" and python_version < "4" \
1414
--hash=sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3 \
1515
--hash=sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18

tests/integration/ha_tests/application-charm/charmcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ bases:
1212
parts:
1313
charm:
1414
charm-binary-python-packages:
15-
- psycopg2-binary==2.9.5 # renovate
15+
- psycopg2-binary==2.9.6 # renovate

0 commit comments

Comments
 (0)