Skip to content

Commit

Permalink
TST: pip freeze
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Jan 5, 2022
1 parent b652ce7 commit 042469f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]
os: [ubuntu-latest]
numpy_ver: ["latest"]
include:
- python-version: "3.8"
numpy_ver: "1.19"
os: ubuntu-latest

name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with numpy ${{ matrix.numpy_ver }}
runs-on: ${{ matrix.os }}
Expand All @@ -29,6 +33,12 @@ jobs:
python -m pip install --upgrade pip
pip install -r test_requirements.txt
- name: Install NEP29 dependencies
if: ${{ matrix.numpy_ver != 'latest'}}
run: |
pip install --no-binary :numpy: numpy==${{ matrix.numpy_ver }}
pip freeze
- name: Install dependencies
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 042469f

Please sign in to comment.