diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 2519be1..45a8e97 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -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 @@ -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