From fe76ed5299d16178fb306f90890b44d09b1342a1 Mon Sep 17 00:00:00 2001 From: Austin Schneider Date: Wed, 5 Jun 2024 04:04:23 -0500 Subject: [PATCH 1/3] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 08542f86..d58bcf0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ DYLD_LIBRARY_PATH=$REPAIR_LIBRARY_PATH:$DYLD_LIBRARY_PATH delocate-wheel --requi [project] name = "siren" -version = "0.0.1" +version = "0.0.2" description = "Sampling and Injection for Rare EveNts: A neutrino and rare-process injection toolkit" readme = "README.md" requires-python = ">=3.8" From 14c83fea3fa30ec9e959f11368fb6c4625747734 Mon Sep 17 00:00:00 2001 From: Austin Schneider Date: Wed, 5 Jun 2024 07:22:46 -0500 Subject: [PATCH 2/3] Just cp310 --- .github/workflows/build_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 9d8d4db8..ef52c36d 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -10,7 +10,7 @@ jobs: matrix: # macos-13 is an intel runner, macos-14 is apple silicon os: [macos-13, macos-14] - py: [cp38, cp39, cp311, cp312] + py: [cp310] steps: - uses: actions/checkout@v4 @@ -40,7 +40,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - py: [cp38, cp39, cp311, cp312] + py: [cp310] image: [manylinux, musllinux] arch: [x86_64, i686, aarch64, ppc64le, s390x] From f26b22fa6d571e71de335850ae179f16262d8124 Mon Sep 17 00:00:00 2001 From: Austin Schneider Date: Wed, 5 Jun 2024 07:31:02 -0500 Subject: [PATCH 3/3] Add all supported python versions. Remove less common architectures --- .github/workflows/build_wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index ef52c36d..fed37847 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -10,7 +10,7 @@ jobs: matrix: # macos-13 is an intel runner, macos-14 is apple silicon os: [macos-13, macos-14] - py: [cp310] + py: [cp38, cp39, cp310, cp311, cp312] steps: - uses: actions/checkout@v4 @@ -40,9 +40,9 @@ jobs: strategy: matrix: os: [ubuntu-latest] - py: [cp310] + py: [cp38, cp39, cp310, cp311, cp312] image: [manylinux, musllinux] - arch: [x86_64, i686, aarch64, ppc64le, s390x] + arch: [x86_64, aarch64] steps: - uses: actions/checkout@v4