From 7643b0b51dd6df94ec076b383045bfef46d04e09 Mon Sep 17 00:00:00 2001 From: John Marshall Date: Tue, 3 Oct 2023 00:42:09 +1300 Subject: [PATCH] Bump version to rc8 --- .github/workflows/release.yaml | 14 ++++---------- pysam/version.py | 2 +- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a6d2b077..91fc8310 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,18 +15,10 @@ jobs: runs-on: ${{ matrix.os }}-latest strategy: matrix: - os: [ubuntu] - build: ["cp36-* cp37-*", "cp38-* cp39-*", "cp310-* cp311-*", "cp312-*"] + os: [macos] + build: ["cp310-*"] x64image: [manylinux_2_28] - include: - - os: macos - build: "cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*" - - - os: ubuntu - build: "cp38-manylinux_x86_64" - x64image: manylinux2014 - steps: - name: Checkout pysam uses: actions/checkout@v3 @@ -43,6 +35,8 @@ jobs: CIBW_BUILD: ${{ matrix.build }} CIBW_SKIP: "*musllinux*" + CIBW_BUILD_VERBOSITY_MACOS: 3 + CIBW_ARCHS_LINUX: auto aarch64 CIBW_ARCHS_MACOS: x86_64 arm64 diff --git a/pysam/version.py b/pysam/version.py index 757e323a..7435fad4 100644 --- a/pysam/version.py +++ b/pysam/version.py @@ -1,5 +1,5 @@ # pysam versioning information -__version__ = "0.21.0" +__version__ = "0.22.0rc8" __samtools_version__ = "1.18" __bcftools_version__ = "1.18"