From 17555630ea4766a534d4f5a0358eef3a9c1670ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczy=C5=84ski?= Date: Tue, 21 Apr 2026 19:18:00 +0200 Subject: [PATCH] bump project dependencies --- Dockerfile | 2 +- README.md | 4 ++-- pyproject.toml | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ddca4f..79fb7a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:555.0.0-slim +FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:565.0.0-slim RUN apt-get update && \ apt-get install -y python3-venv && \ diff --git a/README.md b/README.md index aabfeb0..26dabc9 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ See [src/pykmstool/kms_funcs.py](https://github.com/icedevml/pykmstool/tree/mast ``` docker run \ -v ./gcloud-config:/root/.config/gcloud \ - -it ghcr.io/icedevml/pykmstool:v2.0.2 \ + -it ghcr.io/icedevml/pykmstool:v2.0.3 \ -- \ sign-csr \ --key-version-name projects/example-project/locations/europe-west6/keyRings/ExampleKeyRing/cryptoKeys/ExampleRSAKey1/cryptoKeyVersions/1 \ @@ -140,6 +140,6 @@ Remember to invalidate your credentials after finishing work with the tool, whic ``` docker run \ -v ./gcloud-config:/root/.config/gcloud \ - -it ghcr.io/icedevml/pykmstool:v2.0.2 \ + -it ghcr.io/icedevml/pykmstool:v2.0.3 \ docker-revoke-credentials ``` diff --git a/pyproject.toml b/pyproject.toml index f64feae..5325a12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,31 +4,31 @@ build-backend = "setuptools.build_meta" [project] name = "pykmstool" -version = "2.0.2" +version = "2.0.3" description = "Google Cloud KMS Certificate Signing Request (CSR) Generation Tool" readme = "README.md" authors = [ {name = "Michał Leszczyński", email = "ml@icedev.pl"} ] license = {text = "MIT"} -requires-python = ">=3.8" +requires-python = ">=3.10" classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ - "cryptography>=46.0.4", - "google-cloud-resource-manager>=1.16.0", - "google-cloud-kms>=3.10.0", + "cryptography>=46.0.7", + "google-cloud-resource-manager>=1.17.0", + "google-cloud-kms>=3.12.0", "crcmod>=1.7", - "click>=8.3.1" + "click>=8.3.2" ] [project.scripts]