Skip to content

Commit 5700102

Browse files
committed
Remove twine from make target requirements
1 parent 1b4da3b commit 5700102

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
id-token: write
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: actions/setup-python@v4
17+
- uses: actions/setup-python@v5
1818
- run: pip install build
1919
- run: python -m build
2020
- name: Publish package distributions to PyPI

common.mk

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ release:
1818
@if ! type -P pandoc; then echo "Please install pandoc"; exit 1; fi
1919
@if ! type -P sponge; then echo "Please install moreutils"; exit 1; fi
2020
@if ! type -P gh; then echo "Please install gh"; exit 1; fi
21-
@if ! type -P twine; then echo "Please install twine"; exit 1; fi
2221
git pull
2322
git clean -x --force argcomplete
2423
TAG_MSG=$$(mktemp); \

0 commit comments

Comments
 (0)