Skip to content

Commit

Permalink
Fix boolean operators
Browse files Browse the repository at this point in the history
  • Loading branch information
amykyta3 committed Oct 30, 2023
1 parent b270f26 commit eebd98f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python 3.7 to bootstrap py3.6 and py3.5
if: ${{ matrix.python-version == '3.6' or matrix.python-version == '3.5' }}
if: ${{ matrix.python-version == '3.6' || matrix.python-version == '3.5' }}
uses: actions/setup-python@v4
with:
python-version: 3.7
Expand All @@ -55,15 +55,15 @@ jobs:
# Python 3.6 & 3.7 cannot install directly from a pyproject.toml
# Instead, build a wheel from py3.7 and then install it
- name: Install via wheel
if: ${{ matrix.python-version == '3.6' or matrix.python-version == '3.5' }}
if: ${{ matrix.python-version == '3.6' || matrix.python-version == '3.5' }}
run: |
python3.7 -m pip install build
python3.7 -m build
python --version
python -m pip install ./dist/*.whl
- name: Install
if: ${{ matrix.python-version != '3.6' and matrix.python-version != '3.5' }}
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.5' }}
run: |
python -m pip install .
Expand Down

0 comments on commit eebd98f

Please sign in to comment.