diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index a442fca..3a5ae1a 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -8,8 +8,7 @@ jobs: runs-on: macos-12 strategy: matrix: - python-version: ["3.7", "3.8"] -# python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] name: ${{ matrix.python-version }} steps: - name: Checkout repo diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index bcea88e..ec9d919 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -11,7 +11,7 @@ jobs: shell: cmd strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] name: ${{ matrix.python-version }} steps: - name: Checkout repo diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d9020ca..49592a7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -20,7 +20,6 @@ jobs: - ubuntu-latest - macos-12 - macos-latest - - macos-latest-xlarge - windows-latest exclude: # Only do pypy 3.7 on Linux @@ -107,7 +106,7 @@ jobs: if: runner.os == 'Windows' working-directory: .\lzo-2.10\build run: msbuild lzo_static_lib.vcxproj -p:Configuration=Release -p:Platform=x64 -p:OutDir=..\ - - run: python setup.py install + - run: pip install -e ./ - run: pip install pytest wheel - run: pytest --doctest-modules tests/ - run: ls -l diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index cc3cca3..8bb3160 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,8 +31,6 @@ jobs: exclude: - os: windows-2019 arch: "x86_64" - - os: ubuntu-20.04 - arch: "arm64" steps: - name: Checkout repo uses: actions/checkout@v3