Skip to content

Commit

Permalink
Update build.yaml
Browse files Browse the repository at this point in the history
add new python versions and clean up workflow file
  • Loading branch information
UriaMorP committed Dec 14, 2023
1 parent 54ef650 commit cbe5e82
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6.8, 3.7, 3.8, 3.9]
python-version: [3.6.8, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0]
os: [macos-latest, ubuntu-20.04]

steps:
Expand All @@ -20,16 +20,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

# - name: pip install dependencies [pip]
# if: ${{ matrix.python-version >= 3.7 }}
# run: |
# python -m pip install pip --upgrade pip
# pip install pytest
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# pip install -e .

- name: pip install dependencies [pip]
# if: ${{ matrix.python-version < 3.7 }}
run: |
python -m pip install pip --upgrade pip;
pip install pytest;
Expand Down

0 comments on commit cbe5e82

Please sign in to comment.