Skip to content

Commit b8b2b55

Browse files
Merge pull request #9 from SamhammerAG/KIT-3970
KIT-3970 Security upgrade
2 parents 528d015 + 5b1f3ef commit b8b2b55

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sag-py-cache-decorator"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "A decorator to cache method call results with similar parameters"
55
authors = ["Samhammer AG"]
66
license = "MIT"
@@ -12,7 +12,7 @@ python = "^3.12"
1212
[tool.poetry.group.dev.dependencies]
1313
flake8 = "*"
1414
mypy = "*"
15-
build = "*"
15+
build = ">=1.1.1"
1616
pytest = "*"
1717
pytest-asyncio = "*"
1818
pytest-cov = "*"
@@ -21,6 +21,7 @@ toml = "*"
2121
coverage = "*"
2222
mock = "*"
2323
types-mock = "*"
24+
zipp = ">=3.19.1"
2425

2526
[build-system]
2627
requires = ["setuptools>=61.0"]

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
-r requirements.txt
2+
build>=1.1.1
23
flake8
34
mypy
4-
build
55

66
pytest
77
pytest-asyncio
88
pytest-cov
99

1010
# Toml and coverage temporarely fixes compatibility issues between coverage-lcov and coverage
1111
# see for details: https://github.com/theupdateframework/python-tuf/issues/2254
12-
toml
1312
coverage
1413
coverage-lcov
14+
toml
1515

1616
mock
1717
types-mock

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setuptools.setup(
1313
name="sag-py-cache-decorator",
14-
version="0.3.0",
14+
version="0.3.1",
1515
description="A decorator to cache method call results with similar parameters",
1616
long_description=LONG_DESCRIPTION,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)