Skip to content

Commit ec030a9

Browse files
committed
Trying using an intermediate variable to address sdist wildcard matching in mingw build
1 parent a76e051 commit ec030a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
python -m pip install --break-system-packages --upgrade -r tests/requirements.txt
198198
- name: Build and Install OpenTimelineIO
199199
run: |
200-
python -m pip install ./sdist/opentimelineio-*.tar.gz -v --break-system-packages
200+
pkg=`ls -1 sdist/opentimelineio-*.tar.gz` python -m pip install $pkg -v --break-system-packages
201201
- name: Run tests w/ python coverage
202202
run: make ci-postbuild
203203

0 commit comments

Comments
 (0)