Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.8, enable 3.12 in the wheel builds #170

Merged
merged 1 commit into from
Aug 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
arm64-manylinux228-py311:
arm64-manylinux228-py312:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -27,7 +27,7 @@ jobs:
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python311 \
--env PYGMO_BUILD_TYPE=Python312 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
Expand All @@ -37,7 +37,7 @@ jobs:
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
arm64-manylinux228-py310:
arm64-manylinux228-py311:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -46,7 +46,7 @@ jobs:
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python310 \
--env PYGMO_BUILD_TYPE=Python311 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
Expand All @@ -56,7 +56,7 @@ jobs:
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
arm64-manylinux228-py39:
arm64-manylinux228-py310:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -65,7 +65,7 @@ jobs:
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python39 \
--env PYGMO_BUILD_TYPE=Python310 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
Expand All @@ -75,7 +75,7 @@ jobs:
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
arm64-manylinux228-py38:
arm64-manylinux228-py39:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -84,7 +84,7 @@ jobs:
# Use Docker Command Directly to take more control over the platform
run: >
docker run \
--env PYGMO_BUILD_TYPE=Python38 \
--env PYGMO_BUILD_TYPE=Python39 \
--env GITHUB_WORKSPACE=${GITHUB_WORKSPACE} \
--env GITHUB_REF=${GITHUB_REF} \
--env TWINE_USERNAME=${{ secrets.TWINE_USERNAME }} \
Expand All @@ -94,48 +94,48 @@ jobs:
--platform linux/arm64 \
pagmo2/manylinux228_aarch64_with_deps:latest \
bash tools/gha_manylinux.sh
amd64-manylinux228-py311:
amd64-manylinux228-py312:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python311"
PYGMO_BUILD_TYPE: "Python312"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
amd64-manylinux228-py310:
amd64-manylinux228-py311:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python310"
PYGMO_BUILD_TYPE: "Python311"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
amd64-manylinux228-py39:
amd64-manylinux228-py310:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python39"
PYGMO_BUILD_TYPE: "Python310"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
- uses: actions/checkout@v2
- name: Build
run: bash tools/gha_manylinux.sh
amd64-manylinux228-py38:
amd64-manylinux228-py39:
runs-on: ubuntu-latest
container:
image: pagmo2/manylinux228_x86_64_with_deps:latest
env:
PYGMO_BUILD_TYPE: "Python38"
PYGMO_BUILD_TYPE: "Python39"
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
steps:
Expand Down
Loading