Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ jobs:
activate-environment: deptest-${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
channels: conda-forge
- name: Install setuptools
run: |
conda install -c conda-forge setuptools
- name: Show conda details
run: |
conda info
Expand All @@ -71,7 +74,7 @@ jobs:
- name: Install Python dependencies
run: |
python setup.py install
pip install pytest scipy pillow matplotlib
pip install pytest scipy pillow matplotlib setuptools
- name: Run tests
run: |
pytest
Expand Down
Loading