Skip to content

Commit

Permalink
add python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
thiesmoeller committed Oct 16, 2024
1 parent f695586 commit 15a1158
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
strategy:
fail-fast: false
matrix:
a: [cp39, cp3_10, cp3_11, cp3_12]
a: [cp39, cp3_10, cp3_11, cp3_12, cp3_13]
p: [manylinux_2_31_x86_64, manylinux_2_31_aarch64]

env:
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.9 - 3.12"
python-version: "3.9 - 3.13"

- uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.9 - 3.12"
python-version: "3.9 - 3.13"

- uses: actions/download-artifact@v4
with:
Expand Down
5 changes: 3 additions & 2 deletions scripts/build/build-arch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ if [ $BUILD_DISTRO = "debian" ]; then
cp39) BASE_IMAGE32="python:3.9.16-buster"; BASE_IMAGE64="python:3.9.16-bullseye" ;;
cp3_10) BASE_IMAGE32="python:3.10.11-buster"; BASE_IMAGE64="python:3.10.11-bullseye" ;;
cp3_11) BASE_IMAGE32="python:3.11.3-buster"; BASE_IMAGE64="python:3.11.3-bullseye" ;;
cp3_12) BASE_IMAGE64="python:3.12.4-bullseye" ;;
cp3_12) BASE_IMAGE64="python:3.12.4-bullseye" ;;
cp3_13) BASE_IMAGE64="python:3.13.0-bullseye" ;;
*)
echo "Unsupported abi '$ABI_TAG'. Supported tags: cp36m, cp37m, cp38, cp39, cp3_10, cp3_11, cp3_12"
echo "Unsupported abi '$ABI_TAG'. Supported tags: cp36m, cp37m, cp38, cp39, cp3_10, cp3_11, cp3_12, cp3_13"
exit 1
esac
else
Expand Down

0 comments on commit 15a1158

Please sign in to comment.