Skip to content

Commit

Permalink
Upgrade decrypter lambda to python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
psiniemi committed Oct 16, 2024
1 parent 4c840fc commit 32f9845
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,4 @@ dependency-reduced-pom.xml
# Go binary
/go/vault
/go/vault
.venv
2 changes: 1 addition & 1 deletion python/n_vault/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from os import environ

cov = None
VERSION = "0.54"
VERSION = "0.55"
if "VAULT_MEASURE_COVERAGE" in environ:
from coverage import Coverage

Expand Down
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[project]
name = "nitor-vault"
version = "0.54"
version = "0.55"
description = "Vault for storing locally encrypted data in S3 using KMS keys"
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -41,7 +41,7 @@ build-backend = "setuptools.build_meta"

[project.urls]
Repository = "http://github.com/NitorCreations/vault"
Download = "https://github.com/NitorCreations/vault/tarball/0.54"
Download = "https://github.com/NitorCreations/vault/tarball/0.55"

[project.scripts]
vault = "n_vault.cli:main"
Expand Down

0 comments on commit 32f9845

Please sign in to comment.