mirror of
https://github.com/qurator-spk/dinglehopper.git
synced 2025-06-10 04:09:59 +02:00
🚧 GitHub Actions: Avoid compiling OpenCV and NumPy on Python 3.6
This commit is contained in:
parent
ff453fba43
commit
ad7f42c23e
1 changed files with 5 additions and 0 deletions
5
.github/workflows/test.yml
vendored
5
.github/workflows/test.yml
vendored
|
@ -33,6 +33,11 @@ jobs:
|
||||||
|
|
||||||
- name: Update pip
|
- name: Update pip
|
||||||
run: python3 -m pip install -U pip
|
run: python3 -m pip install -U pip
|
||||||
|
- name: Avoid compiling OpenCV and NumPy on Python 3.6
|
||||||
|
run: |
|
||||||
|
if python3 --version | grep -q "Python 3.6"; then
|
||||||
|
pip install --prefer-binary -U opencv-python-headless numpy
|
||||||
|
fi
|
||||||
- name: Install requirements*.txt
|
- name: Install requirements*.txt
|
||||||
run: |
|
run: |
|
||||||
for requirements_txt in requirements*.txt; do
|
for requirements_txt in requirements*.txt; do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue