From a340fddb12906b6547ab692b8e509cb5d6dc3a9d Mon Sep 17 00:00:00 2001 From: "Jason C. Nucciarone" Date: Fri, 6 Dec 2024 12:08:46 -0500 Subject: [PATCH] chore(release): bump `slurm_ops` to 0.10 Also bump dependency versions. `cryptography` is now pinned to the v44 API version rather than v43. Signed-off-by: Jason C. Nucciarone --- lib/charms/hpc_libs/v0/slurm_ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/charms/hpc_libs/v0/slurm_ops.py b/lib/charms/hpc_libs/v0/slurm_ops.py index 9963bf3..cb60de3 100644 --- a/lib/charms/hpc_libs/v0/slurm_ops.py +++ b/lib/charms/hpc_libs/v0/slurm_ops.py @@ -97,11 +97,11 @@ def _on_install(self, _) -> None: # Increment this PATCH version before using `charmcraft publish-lib` or reset # to 0 if you are raising the major API version -LIBPATCH = 9 +LIBPATCH = 10 # Charm library dependencies to fetch during `charmcraft pack`. PYDEPS = [ - "cryptography~=43.0.1", + "cryptography~=44.0.0", "pyyaml>=6.0.2", "python-dotenv~=1.0.1", "slurmutils~=0.9.0",