Skip to content

Commit

Permalink
Merge pull request #22 from wright-group/ci
Browse files Browse the repository at this point in the history
don't use broken versions of pip for ci
  • Loading branch information
untzag authored Feb 24, 2021
2 parents 8978f2f + d463719 commit 5f0a45f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip!=20.3.4,!=21.0.*
pip install flit
- name: Build and publish
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run-entry-points.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade pip!=20.3.4,!=21.0.*
python -m pip install --upgrade wheel setuptools
python -m pip install --upgrade .[dev]
- name: Test with pytest
run: |
Expand Down

0 comments on commit 5f0a45f

Please sign in to comment.