From eebd98f523b3c788760414971007aa5d12c35a3a Mon Sep 17 00:00:00 2001 From: Alex Mykyta Date: Sun, 29 Oct 2023 17:08:23 -0700 Subject: [PATCH] Fix boolean operators --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d01a64f..d3b61e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -55,7 +55,7 @@ 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 @@ -63,7 +63,7 @@ jobs: 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 .