Skip to content

Commit 860e9af

Browse files
authored
Fix setuptools security issue (#12)
1 parent 7423265 commit 860e9af

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
persist-credentials: false
4242
- name: Install uv + caching
43-
uses: astral-sh/setup-uv@v5
43+
uses: astral-sh/setup-uv@v6
4444
with:
4545
enable-cache: true
4646
cache-dependency-glob: |

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
33
[meta]
44
template = "pure-python"
5-
commit-id = "c6354ebd"
5+
commit-id = "86991c1d"
66

77
[python]
88
with-pypy = true

pyproject.toml

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

44
[build-system]
55
requires = [
6-
"setuptools == 75.8.2",
6+
"setuptools == 78.1.1",
77
"wheel",
88
]
99
build-backend = "setuptools.build_meta"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ usedevelop = true
1818
package = wheel
1919
wheel_build_env = .pkg
2020
deps =
21-
setuptools == 75.8.2
21+
setuptools == 78.1.1
2222
commands =
2323
zope-testrunner --test-path=src {posargs:-vc}
2424
extras =
@@ -34,7 +34,7 @@ description = ensure that the distribution is ready to release
3434
basepython = python3
3535
skip_install = true
3636
deps =
37-
setuptools == 75.8.2
37+
setuptools == 78.1.1
3838
wheel
3939
twine
4040
build

0 commit comments

Comments
 (0)