charm-refresh 3.1.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.1
2
+ Name: charm-refresh
3
+ Version: 3.1.1.0
4
+ Summary: In-place rolling refreshes (upgrades) of stateful charmed applications
5
+ Author: Carl Csaposs
6
+ Author-email: carl.csaposs@canonical.com
7
+ Requires-Python: >=3.8
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.8
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Requires-Dist: charm-api (>=0.1.1)
16
+ Requires-Dist: charm-json (>=0.1.1)
17
+ Requires-Dist: httpx (>=0.28.1)
18
+ Requires-Dist: lightkube (>=0.15.4)
19
+ Requires-Dist: ops (>=2.9.0)
20
+ Requires-Dist: packaging (>=24.1)
21
+ Requires-Dist: pyyaml (>=6.0.2)
22
+ Requires-Dist: tomli (>=2.0.1)
23
+ Project-URL: documentation, https://canonical-charm-refresh.readthedocs-hosted.com/
24
+ Project-URL: repository, https://github.com/canonical/charm-refresh
25
+ Description-Content-Type: text/markdown
26
+
27
+ Documentation: https://canonical-charm-refresh.readthedocs-hosted.com/
28
+
@@ -0,0 +1 @@
1
+ Documentation: https://canonical-charm-refresh.readthedocs-hosted.com/
@@ -0,0 +1,19 @@
1
+ """In-place rolling refreshes of stateful charmed applications
2
+
3
+ https://canonical-charm-refresh.readthedocs-hosted.com/
4
+ """
5
+
6
+ from ._main import (
7
+ CharmSpecificCommon,
8
+ CharmSpecificKubernetes,
9
+ CharmSpecificMachines,
10
+ CharmVersion,
11
+ Common,
12
+ Kubernetes,
13
+ KubernetesJujuAppNotTrusted,
14
+ Machines,
15
+ PeerRelationNotReady,
16
+ PrecheckFailed,
17
+ UnitTearingDown,
18
+ snap_name,
19
+ )