Skip to content

Commit

Permalink
Switch to using pip install . in test build
Browse files Browse the repository at this point in the history
  • Loading branch information
jobovy committed Dec 28, 2022
1 parent 18e92cb commit b0494ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade pip wheel setuptools
pip install numpy==${{ matrix.numpy-version }}
pip install pyparsing==2.4.7 # For issue with six which requires pyparsing < 3
- name: Create data directory
Expand All @@ -42,5 +42,7 @@ jobs:
run: |
python setup.py install --test-downloads --all-downloads
- name: Install package
env:
DUST_DIR: ${{github.workspace}}/data/
run: |
python setup.py install --no-downloads
pip install .

0 comments on commit b0494ac

Please sign in to comment.