From e346811fa58e5e612db1eb0e545bf0224289d362 Mon Sep 17 00:00:00 2001 From: joeljonsson Date: Mon, 16 Oct 2023 14:21:42 +0200 Subject: [PATCH] remove python 3.6 3.7, add 3.11, bump actions --- .github/workflows/build-deploy.yml | 10 +++++----- .github/workflows/deploy-docs.yml | 4 ++-- .github/workflows/quick-test.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml index 2686d39..9b66351 100644 --- a/.github/workflows/build-deploy.yml +++ b/.github/workflows/build-deploy.yml @@ -45,7 +45,7 @@ jobs: # Indicates the location of the vcpkg as a Git submodule of the project repository. VCPKG_ROOT: ${{ github.workspace }}/external/LibAPR/vcpkg CIBW_ENVIRONMENT_WINDOWS: EXTRA_CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=D:\\a\\pyapr\\pyapr\\external\\LibAPR\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake -DVCPKG_MANIFEST_DIR=D:\\a\\pyapr\\pyapr\\external\\LibAPR\\" - CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-* cp310-*" + CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-*" CIBW_SKIP: "*musllinux*" CIBW_ARCHS: "auto64" CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_24" @@ -59,7 +59,7 @@ jobs: CIBW_ENVIRONMENT_MACOS: CPPFLAGS="-I/usr/local/opt/llvm/include" LDFLAGS="-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib" CXX="/usr/local/opt/llvm/bin/clang++" CC="/usr/local/opt/llvm/bin/clang" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true @@ -109,7 +109,7 @@ jobs: - name: Install cibuildwheel run: | - python3 -m pip install cibuildwheel==2.5.0 + python3 -m pip install cibuildwheel - name: Install OpenMP dependencies with brew for OSX if: contains(matrix.os,'macos') @@ -139,11 +139,11 @@ jobs: fail-fast: false matrix: os: [ windows-latest ] - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: false diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index b95df0f..dc8b2b6 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -32,7 +32,7 @@ jobs: VCPKG_ROOT: ${{ github.workspace }}/external/LibAPR/vcpkg EXTRA_CMAKE_ARGS: "-DCMAKE_TOOLCHAIN_FILE='${{ github.workspace }}/external/LibAPR/vcpkg/scripts/buildsystems/vcpkg.cmake'" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true @@ -75,7 +75,7 @@ jobs: - name: Check file existence id: check_files - uses: andstor/file-existence-action@v1 + uses: andstor/file-existence-action@v2 with: files: "${{ env.VCPKG_ROOT }}/vcpkg" diff --git a/.github/workflows/quick-test.yml b/.github/workflows/quick-test.yml index e5e1ed0..602dc2d 100644 --- a/.github/workflows/quick-test.yml +++ b/.github/workflows/quick-test.yml @@ -37,7 +37,7 @@ jobs: VCPKG_ROOT: ${{ github.workspace }}/external/LibAPR/vcpkg EXTRA_CMAKE_ARGS: "-DCMAKE_TOOLCHAIN_FILE='${{ github.workspace }}/external/LibAPR/vcpkg/scripts/buildsystems/vcpkg.cmake'" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 submodules: true @@ -80,7 +80,7 @@ jobs: - name: Check file existence id: check_files - uses: andstor/file-existence-action@v1 + uses: andstor/file-existence-action@v2 with: files: "${{ env.VCPKG_ROOT }}/vcpkg"