Skip to content

Commit

Permalink
Pin statsmodels as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerry Manoim committed Feb 25, 2020
1 parent 86be855 commit 5574ab5
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,29 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest]
python-version: [2.7, 3.5, 3.7, 3.8]
include:
- python-version: 2.7
pandas: 0.18.1
numpy: 1.11.3
scipy: 0.17.1
statsmodels: 0.9.0
- python-version: 3.5
pandas: 0.18.1
numpy: 1.11.3
scipy: 0.17.1
statsmodels: 0.9.0
- python-version: 3.7
pandas: 0.25.3
numpy: 1.17.4
pandas: 1.0.1
numpy: 1.18.1
scipy: 1.4.1
statsmodels: 0.11.1
- python-version: 3.8
pandas: 0.25.3
numpy: 1.17.4
pandas: 1.0.1
numpy: 1.18.1
scipy: 1.4.1
statsmodels: 0.11.1

steps:
- uses: actions/checkout@v1
Expand All @@ -40,7 +44,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 }} scipy==${{ matrix.scipy }}
pip install pandas==${{ matrix.pandas }} numpy==${{ matrix.numpy }} scipy==${{ matrix.scipy }} statsmodels==${{ matrix.statsmodels}}
pip install -e .[test]
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 5574ab5

Please sign in to comment.