Skip to content

Commit bc48188

Browse files
try to fix license files not be accepting by twine
1 parent 8877301 commit bc48188

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
shell: bash
166166
- name: Test
167167
run: |
168-
${{ matrix.python-version }} -m pip install wheelhouse/*.whl
168+
${{ matrix.python-version }} -m pip install --force-reinstall --no-deps wheelhouse/*.whl
169169
cd /
170170
${{ matrix.python-version }} -c 'import pyray; pyray.init_window(100,100,"test")' >/tmp/output 2>&1 || true
171171
cat /tmp/output
@@ -248,11 +248,12 @@ jobs:
248248
pip3 install --upgrade "cffi>=1.17.1"
249249
pip3 install --upgrade wheel
250250
pip3 install --upgrade setuptools
251+
pip3 install --upgrade build
251252
del raylib\dynamic\*.so* >nul 2>&1
252253
del raylib\dynamic\*.dll >nul 2>&1
253254
del raylib\dynamic\*.dylib >nul 2>&1
254255
del raylib\dynamic\32bit\* >nul 2>&1
255-
python setup.py bdist_wheel
256+
python -m build --wheel
256257
shell: cmd
257258

258259
- name: Test

0 commit comments

Comments
 (0)