Skip to content

Commit

Permalink
Fix scipy version
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerry Manoim committed Jan 28, 2020
1 parent 0092108 commit 86be855
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,19 @@ jobs:
- python-version: 2.7
pandas: 0.18.1
numpy: 1.11.3
scipy: 0.17.1
- python-version: 3.5
pandas: 0.18.1
numpy: 1.11.3
scipy: 0.17.1
- python-version: 3.7
pandas: 0.25.3
numpy: 1.17.4
scipy: 1.4.1
- python-version: 3.8
pandas: 0.25.3
numpy: 1.17.4
scipy: 1.4.1

steps:
- uses: actions/checkout@v1
Expand All @@ -36,7 +40,7 @@ jobs:
PYTHONWARNINGS: ignore:DEPRECATION::pip._internal.cli.base_command
run: |
python -m pip install --upgrade pip
pip install pandas==${{ matrix.pandas }} numpy==${{ matrix.numpy }}
pip install pandas==${{ matrix.pandas }} numpy==${{ matrix.numpy }} scipy==${{ matrix.scipy }}
pip install -e .[test]
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 86be855

Please sign in to comment.