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 dc57b70 commit 57f2fbe
Show file tree
Hide file tree
Showing 5 changed files with 14 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
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ python:
before_install:
- sudo apt-get install -y libsnappy-dev
- pip install python-snappy
# https://github.com/psf/black/issues/1847
- pip install "pip<20.3"
install:
- pip install -r developer_requirements.txt
script:
Expand Down

0 comments on commit 57f2fbe

Please sign in to comment.