Skip to content

Commit

Permalink
Install scipy using conda
Browse files Browse the repository at this point in the history
  • Loading branch information
bittner committed Jul 28, 2023
1 parent 75f2a07 commit e7bfd12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- pypy-2.7
- pypy-3.8
- pypy-3.9
dependencies:
extras:
- none
- scipy
steps:
Expand All @@ -44,8 +44,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install build tools
run: python -m pip install tox-gh-actions wheel
- name: Install optional dependencies
run: python -m pip install ${{ matrix.dependencies }}
if: ${{ matrix.dependencies != 'none' }}
- name: Install optional dependencies (extras)
run: conda install -c conda-forge .[${{ matrix.extras }}]
if: ${{ matrix.extras != 'none' }}
- name: Run tests
run: tox
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ commands =
coverage run -m pytest {posargs}
coverage xml
coverage report
extras = scipy

[testenv:clean]
description = Clean up bytecode and build artifacts
Expand Down

0 comments on commit e7bfd12

Please sign in to comment.