Skip to content

Commit

Permalink
ci: fix broken configuration (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii authored Sep 17, 2024
1 parent 26ff4b2 commit 12778d3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -27,11 +27,12 @@ jobs:
- name: Set min macOS version
if: runner.os == 'macOS'
run: |
echo "MACOS_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV
- name: Build and install
run: python -m pip install pytest
pip install --verbose .
run: |
python -m pip install pytest
pip install --verbose .
- name: Test
run: python -m pytest

0 comments on commit 12778d3

Please sign in to comment.