Skip to content

Commit 83eb5ea

Browse files
authored
Configuring for pure-python (#14)
1 parent 2b3e493 commit 83eb5ea

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
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 = "891c33f9"
5+
commit-id = "d03bba5c"
66

77
[python]
88
with-windows = false

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
minimum_pre_commit_version: '3.6'
44
repos:
55
- repo: https://github.com/pycqa/isort
6-
rev: "6.0.0"
6+
rev: "6.0.1"
77
hooks:
88
- id: isort
99
- repo: https://github.com/hhatto/autopep8
@@ -12,7 +12,7 @@ repos:
1212
- id: autopep8
1313
args: [--in-place, --aggressive, --aggressive]
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v3.19.1
15+
rev: v3.20.0
1616
hooks:
1717
- id: pyupgrade
1818
args: [--py39-plus]
@@ -21,7 +21,7 @@ repos:
2121
hooks:
2222
- id: teyit
2323
- repo: https://github.com/PyCQA/flake8
24-
rev: "7.1.1"
24+
rev: "7.3.0"
2525
hooks:
2626
- id: flake8
2727
additional_dependencies:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
[build-system]
66
requires = [
7-
"setuptools <= 75.6.0",
7+
"setuptools == 78.1.1",
8+
"wheel",
89
]
910
build-backend = "setuptools.build_meta"
1011

tox.ini

Lines changed: 3 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.6.0
21+
setuptools == 78.1.1
2222
commands =
2323
zope-testrunner --test-path=src {posargs:-vc}
2424
extras =
@@ -34,7 +34,8 @@ description = ensure that the distribution is ready to release
3434
basepython = python3
3535
skip_install = true
3636
deps =
37-
setuptools <= 75.6.0
37+
setuptools == 78.1.1
38+
wheel
3839
twine
3940
build
4041
check-manifest

0 commit comments

Comments
 (0)