We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f056180 commit 03462f5Copy full SHA for 03462f5
3 files changed
.github/workflows/test.yml
@@ -52,8 +52,13 @@ jobs:
52
with:
53
python-version: ${{ matrix.python }}
54
55
- - name: Install tox
56
- run: pip install tox
+ - name: Install dependencies
+ run: pip install tox twine
57
+
58
+ - name: Check package
59
+ shell: bash
60
+ run: |
61
+ twine check --strict dist/*
62
63
- name: Test
64
shell: bash
CHANGELOG.rst
@@ -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
7
2.1.1 (2024-04-08)
8
------------------
9
pyproject.toml
@@ -1,6 +1,6 @@
[build-system]
requires = [
- "hatchling",
+ "hatchling>=1.26",
"hatch-vcs",
]
build-backend = "hatchling.build"
0 commit comments