Skip to content

Commit

Permalink
FIX: Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Feb 5, 2025
1 parent 5e55967 commit aaa2539
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ jobs:
# Python (if conda)
- name: Fixes for conda
run: |
if [[ "$RUNNER_OS" == "macOS" ]]; then
# For some reason on Linux we get crashes
if [[ "$RUNNER_OS" == "Linux" ]]; then
sed -i "/numba/d" environment.yml
elif [[ "$RUNNER_OS" == "macOS" ]]; then
sed -i "" "s/ - PySide6 .*/ - PySide6 <6.8/g" environment.yml
fi
if: matrix.kind == 'conda' || matrix.kind == 'mamba'
Expand Down

0 comments on commit aaa2539

Please sign in to comment.