File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,9 @@ jobs:
199
199
- name : Set up Python ${{ matrix.python-version }}
200
200
if : endsWith(matrix.python-version, 't')
201
201
run : |
202
- uv python install ${IMPL}-${VERSION}-${OS%-*}-${ARCH}-${LIBC}
202
+ echo "UV_PYTHON=${IMPL}-${VERSION}-${OS%-*}-${ARCH}-${LIBC}" >> $GITHUB_ENV
203
+ source $GITHUB_ENV
204
+ uv python install $UV_PYTHON
203
205
env :
204
206
IMPL : cpython
205
207
VERSION : ${{ matrix.python-version }}
@@ -215,9 +217,7 @@ jobs:
215
217
run : python -c "import sys; print(sys.version)"
216
218
- name : Install tox
217
219
run : |
218
- uv tool install tox --with=git+https://github.com/effigies/tox-gh-actions@abiflags --with=tox-uv
219
- env :
220
- UV_PYTHON : ${{ matrix.python-version }}
220
+ uv tool install -v tox --with=git+https://github.com/effigies/tox-gh-actions@abiflags --with=tox-uv
221
221
- name : Show tox config
222
222
run : tox c
223
223
- name : Run tox
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ pass_env =
60
60
NO_COLOR
61
61
CLICOLOR
62
62
CLICOLOR_FORCE
63
+ # uv needs help in this case
64
+ py313t-x86: UV_PYTHON
63
65
set_env =
64
66
pre: PIP_EXTRA_INDEX_URL =https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
65
67
pre: UV_EXTRA_INDEX_URL =https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
You can’t perform that action at this time.
0 commit comments