Skip to content

Commit

Permalink
Update test_latest.yml to install numpy/scipy from wheels
Browse files Browse the repository at this point in the history
This avoids issues with Python 3.12s deprecation of build tools used by numpy and scipy
  • Loading branch information
mstimberg committed Jun 20, 2023
1 parent 17bda4d commit c33522e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test_latest.yml
Expand Up @@ -59,7 +59,8 @@ jobs:
- name: Install dependencies
run: |
${{ steps.python.outputs.python-path }} -m pip install --upgrade pip setuptools
${{ steps.python.outputs.python-path }} -m pip install --pre pytest cython sympy pyparsing numpy jinja2 scipy sphinx
${{ steps.python.outputs.python-path }} -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy scipy
${{ steps.python.outputs.python-path }} -m pip install --pre pytest cython sympy pyparsing jinja2 sphinx
- name: Install Brian2
run: ${{ steps.python.outputs.python-path }} -m pip install .
- name: Run Tests
Expand Down

0 comments on commit c33522e

Please sign in to comment.