Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
```
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading