Skip to content

Commit

Permalink
downgrade pip for the moment to deal with psf/black#1847
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbelden committed Jan 17, 2021
1 parent c9ca986 commit 52221ac
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
- name: Install OS dependencies
run: sudo apt-get install -y libsnappy-dev && pip install python-snappy
- uses: actions/checkout@v2
- name: Downgrade pip
# https://github.com/psf/black/issues/1847
run: pip install "pip<20.3"
- name: Install Testing Dependencies
run: pip install -r developer_requirements.txt
- name: Run Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
run: |
brew install openblas
OPENBLAS="$(brew --prefix openblas)" pip install numpy
- name: Downgrade pip
# https://github.com/psf/black/issues/1847
run: pip install "pip<20.3"
- name: Install Testing Dependencies
run: pip install -r developer_requirements.txt
- name: Run Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
with:
python-version: ${{ matrix.py }}
- uses: actions/checkout@v2
- name: Downgrade pip
# https://github.com/psf/black/issues/1847
run: python -m pip install "pip<20.3"
- name: Install Testing Dependencies
run: pip install -r developer_requirements.txt
- name: Run Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/check_formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
with:
python-version: ${{ matrix.py }}
- uses: actions/checkout@v2
- name: Downgrade pip
# https://github.com/psf/black/issues/1847
run: pip install "pip<20.3"
- name: Install Testing Dependencies
run: pip install -r developer_requirements.txt
- name: Run Black
Expand Down

0 comments on commit 52221ac

Please sign in to comment.