ci: force distutils for building python

This commit is contained in:
Alex Bezzubov 2023-09-13 23:40:35 +02:00
parent 62cb8695d2
commit c7dc5fb77a

View File

@ -21,7 +21,8 @@ jobs:
if [ -f python/requirements.dev.txt ]; then pip install -r python/requirements.dev.txt; fi if [ -f python/requirements.dev.txt ]; then pip install -r python/requirements.dev.txt; fi
- name: Build and install package - name: Build and install package
run: | run: |
pip -v install -e python pip install setuptools wheel
pip -v install --no-use-pep517 -e python
- name: Test - name: Test
run: | run: |
pytest python/ pytest python/