Skip to content

Commit a6de719

Browse files
studiojwulmermojicae
authored
fix: Wrong tox env for packaging after rename in 39d89ef (#1924)
* fix: Wrong tox env for packaging after rename in 39d89ef * fix: try installing the wheel with pip3 --------- Co-authored-by: Wolfgang Ulmer <[email protected]> Co-Authored-By: Eddy Mojica <[email protected]>
1 parent ef10e1a commit a6de719

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
FORCE_COLOR: 1
1515
PY_COLORS: 1
16-
TOXENV: packaging
16+
TOXENV: pkg
1717
TOX_PARALLEL_NO_SPINNER: 1
1818

1919
steps:

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ description =
109109
deps =
110110
build >= 0.7.0
111111
twine
112+
pip
112113
skip_install = true
113114
# Ref: https://twitter.com/di_codes/status/1044358639081975813
114115
commands =
@@ -124,7 +125,7 @@ commands =
124125
# Validate metadata using twine
125126
twine check --strict {toxinidir}/dist/*
126127
# Install the wheel
127-
sh -c "python3 -m pip install {toxinidir}/dist/*.whl"
128+
sh -c "pip3 install {toxinidir}/dist/*.whl"
128129
# Check if cli was installed
129130
jirashell --help
130131
# Uninstall the wheel

0 commit comments

Comments
 (0)