Skip to content

Commit 4065712

Browse files
try to fix license files not be accepting by twine
1 parent ea40dd1 commit 4065712

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,11 @@ jobs:
8282
pip3 install --upgrade wheel
8383
pip3 install --upgrade setuptools
8484
python -m pip install --upgrade build
85-
python -m pip install --upgrade auditwheel
8685
python -m build --wheel
87-
python -m auditwheel repair dist/*.whl
8886
8987
- name: Test
9088
run: |
91-
pip3 install wheelhouse/*.whl
89+
pip3 install dist/*.whl
9290
cd /
9391
python3 -c 'import pyray; pyray.init_window(100,100,"test")' >/tmp/output 2>&1 || true
9492
cat /tmp/output
@@ -104,7 +102,7 @@ jobs:
104102
uses: actions/upload-artifact@v4
105103
with:
106104
name: wheel-mac-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
107-
path: wheelhouse/*
105+
path: dist/*
108106

109107

110108

@@ -162,6 +160,7 @@ jobs:
162160
${{ matrix.python-version }} -m pip install --upgrade auditwheel
163161
${{ matrix.python-version }} -m pip install --upgrade patchelf
164162
${{ matrix.python-version }} -m build --wheel
163+
${{ matrix.python-version }} -m auditwheel show --verbose dist/*.whl
165164
${{ matrix.python-version }} -m auditwheel repair dist/*.whl
166165
shell: bash
167166
- name: Test

0 commit comments

Comments
 (0)