Skip to content

Commit 11ef20f

Browse files
authored
Restore twine check (#186)
1 parent 9983083 commit 11ef20f

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,7 @@ jobs:
331331

332332
- run: |
333333
pip install -U twine
334-
# FIXME: restore `twine` check when metadata version 2.4 (used by `maturin`) supported by `twine`,
335-
# see https://github.com/pypa/twine/pull/1180
336-
# twine check --strict crates/jiter-python/dist/*
334+
twine check --strict crates/jiter-python/dist/*
337335
338336
- uses: actions/upload-artifact@v4
339337
with:
@@ -626,11 +624,10 @@ jobs:
626624
merge-multiple: true
627625
path: dist
628626

629-
- run: pip install -U twine
630-
- run: ls -l dist/
631-
# FIXME: restore `twine` check when metadata version 2.4 (used by `maturin`) supported by `twine`
632-
# see https://github.com/pypa/twine/pull/1180
633-
# - run: twine check --strict dist/*
627+
- run: |
628+
pip install -U twine
629+
ls -l dist/
630+
twine check --strict dist/*
634631
635632
- name: upload to pypi
636633
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)