diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index be1df33..0745a33 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -4,8 +4,6 @@ name: wheels on: push: branches: - # on push, only build on wip chore/cicd branches so we can test in those - # contexts without triggering pull-requests. - chore/cicd/* pull_request: @@ -16,11 +14,6 @@ jobs: outputs: include: ${{ steps.set-matrix.outputs.include }} env: - # Define a range of python version, going back to 3.6 because often the - # Phd-type developer that use tools like tmap don't update their tool - # chains very often, supporting them means that they might better support - # tmap's developement in the future. - # This may change, and probably should. PYTHON_VERSIONS: "3.6,3.7,3.8,3.9,3.10,3.11,3.12" steps: - uses: actions/checkout@v4 @@ -28,12 +21,6 @@ jobs: run: pipx install cibuildwheel==2.22.0 - id: set-matrix run: | - # Some notes on this: - # - macos-13 is a amd64 builder. - # - maxos-14 is the default builder which is arm64, probably because - # it's more effecient. - # - We don't yet specifiy arm64 versions on linux, even though AWS - # provides cheaper ec2 instaces running on arm64 cores. /FIXME MATRIX=$( { cibuildwheel --print-build-identifiers --platform linux --python $PYTHON_VERSIONS \