Skip to content

Commit 16d3b23

Browse files
committed
Adjustments to github actions
1 parent 79f115c commit 16d3b23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040

4141
- name: Verify tag version matches package version
4242
run: |
43-
pip install twine
43+
python -m pip install --upgrade pip
44+
pip install build setuptools_scm twine
4445
PACKAGE_VERSION=$(python -m setuptools_scm)
4546
TAG_VERSION=${GITHUB_REF#refs/tags/} # Remove 'refs/tags/' prefix
4647
if [ "$PACKAGE_VERSION" != "$TAG_VERSION" ]; then

0 commit comments

Comments
 (0)