Skip to content

Commit 03462f5

Browse files
Update hatchling version requirement in pyproject.toml (#377)
--------- Co-authored-by: Bruno Oliveira <[email protected]>
1 parent f056180 commit 03462f5

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,13 @@ jobs:
5252
with:
5353
python-version: ${{ matrix.python }}
5454

55-
- name: Install tox
56-
run: pip install tox
55+
- name: Install dependencies
56+
run: pip install tox twine
57+
58+
- name: Check package
59+
shell: bash
60+
run: |
61+
twine check --strict dist/*
5762
5863
- name: Test
5964
shell: bash

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.1.2 (2025-11-10)
2+
------------------
3+
4+
* `#376 <https://github.com/pytest-dev/execnet/issues/376>`__ fix artifact building - pin minimal version of hatch
5+
6+
17
2.1.1 (2024-04-08)
28
------------------
39

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"hatchling",
3+
"hatchling>=1.26",
44
"hatch-vcs",
55
]
66
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)