We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24d5d2f commit 8bc65c2Copy full SHA for 8bc65c2
.github/workflows/copilot-setup-steps.yml
@@ -32,3 +32,16 @@ jobs:
32
uses: matlab-actions/setup-matlab@v2
33
with:
34
cache: true
35
+
36
+ - name: Install python
37
+ uses: actions/setup-python@v5
38
+ with:
39
+ python-version: '3.11'
40
41
+ - name: Configure python env
42
+ run: |
43
+ python -m pip install -U pip
44
+ pip install -r +tests/requirements.txt
45
+ python -m pip list
46
+ echo "HDF5_PLUGIN_PATH=$(python -c "import hdf5plugin; print(hdf5plugin.PLUGINS_PATH)")" >> "$GITHUB_ENV"
47
+ echo $( python -m pip show nwbinspector | grep ^Location: | awk '{print $2}' )
0 commit comments