Skip to content

Commit

Permalink
More pyyaml troubleshooting yaml/pyyaml#724
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jul 18, 2023
1 parent 5eca531 commit 9be347d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/setup_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
sudo apt update
sudo apt install -y gcc libfann-dev swig libssl-dev portaudio19-dev git libpulse-dev python3-dev
pip install wheel
pip install wheel "cython<3.0.0" # TODO: cython patching https://github.com/yaml/pyyaml/issues/724
- name: Test Core Module Installation
run: |
pip install .[core_modules]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
sudo apt update
sudo apt install -y gcc libfann-dev swig libssl-dev portaudio19-dev git libpulse-dev
pip install wheel
pip install wheel "cython<3.0.0" # TODO: cython patching https://github.com/yaml/pyyaml/issues/724
pip install . -r requirements/test.txt
env:
GITHUB_TOKEN: ${{secrets.neon_token}}
Expand Down
2 changes: 1 addition & 1 deletion test/pi_setup_3_10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cd /core || exit 10
python3.10 -m venv "/core/venv" || exit 11
. /core/venv/bin/activate

pip install --upgrade pip wheel
pip install --upgrade pip wheel "cython<3.0.0" # TODO: cython patching https://github.com/yaml/pyyaml/issues/724
pip install ".[core_modules,skills_required,skills_essential,skills_default,skills_extended,pi]" || exit 11

cp -rf /core/test/pi_image_overlay/* /
2 changes: 1 addition & 1 deletion test/pi_setup_3_7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cd /core || exit 10
python3.7 -m venv "/core/venv" || exit 11
. /core/venv/bin/activate

pip install --upgrade pip wheel
pip install --upgrade pip wheel "cython<3.0.0" # TODO: cython patching https://github.com/yaml/pyyaml/issues/724
pip install ".[core_modules,skills_required,skills_essential,skills_default,skills_extended,pi]" || exit 11

cp -rf /core/test/pi_image_overlay/* /

0 comments on commit 9be347d

Please sign in to comment.