Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ jobs:
env:
PYTHON_VERSION: ${{ matrix.python_version }}

- name: Fix PsychXR numpy dependency DLL issues (Windows only)
if: matrix.os == 'windows-latest'
run: |
conda install --force-reinstall numpy

- name: Run eegnb install test
run: |
Expand Down
1 change: 1 addition & 0 deletions environments/eeg-expy-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dependencies:
# System-level dependencies
- python>=3.8,<=3.10 # psychopy <= 3.10
- dukpy==0.2.3 # psychopy dependency, avoid failing due to building wheel on win 3.9.
- numpy # fix PsychXR numpy dependency DLL issues on Windows
- pytables # install pytables for macOS arm64, so do not need to build from source.
- rust # used by docsbuild
- liblsl # install liblsl to prevent error on macOS and Ubuntu: "RuntimeError: LSL binary library file was not found."
Expand Down
Loading