Skip to content

Commit

Permalink
Try handling CI pyopengl problem in workflow file python-package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbruns committed Jan 18, 2024
1 parent 55257dd commit 4e1d72f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
# on ubuntu with PyOpenGL 3.1.7 headless automated build/test fails at "from OpenGL import GL"
if [ "$RUNNER_OS" == "Linux" ] ; then
python -m pip install PyOpenGL==3.1.6
python -m pip install -e .
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 4e1d72f

Please sign in to comment.