2424jobs :
2525 reusable-build :
2626 if : ${{ inputs.if }}
27- name : stable - ${{ inputs.target }} - python@3.11
27+ name : stable - ${{ inputs.target }} - python@3.13
2828 runs-on : ${{ inputs.host }}
2929 steps :
3030 - name : Checkout
@@ -108,7 +108,7 @@ jobs:
108108 uses : PyO3/maturin-action@v1
109109 with :
110110 target : ${{ inputs.target }}
111- args : --release -i python3.11 -m Cargo.toml
111+ args : --release -i python3.13 -m Cargo.toml
112112 docker-options : |
113113 --mount type=bind,source=/usr/local/lib/android/sdk/ndk/25.2.9519653,target=/usr/local/lib/android/sdk/ndk/25.2.9519653
114114 -e CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=/usr/local/lib/android/sdk/ndk/25.2.9519653/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang
@@ -122,7 +122,7 @@ jobs:
122122 uses : PyO3/maturin-action@v1
123123 with :
124124 target : ${{ inputs.target }}
125- args : --release -i python3.11 -m Cargo.toml
125+ args : --release -i python3.13 -m Cargo.toml
126126 docker-options : |
127127 --mount type=bind,source=/usr/local/lib/android/sdk/ndk/25.2.9519653,target=/usr/local/lib/android/sdk/ndk/25.2.9519653
128128 -e CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER=/usr/local/lib/android/sdk/ndk/25.2.9519653/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi24-clang
@@ -135,21 +135,21 @@ jobs:
135135 if : ${{ inputs.target == 'i686-pc-windows-msvc' }}
136136 uses : actions/setup-python@v5
137137 with :
138- python-version : " 3.11 "
138+ python-version : " 3.13 "
139139 architecture : " x86"
140140 - name : Build (non-docker &&non-android)
141141 if : ${{ inputs.publish != 'true' && !inputs.docker && !contains(inputs.target,'android') }}
142142 uses : PyO3/maturin-action@v1
143143 with :
144144 target : ${{ inputs.target }}
145- args : --release -i python3.11 -m Cargo.toml
145+ args : --release -i python3.13 -m Cargo.toml
146146 - name : Publish (non-docker && non-android)
147147 if : ${{ inputs.publish == 'true' && !inputs.docker && !contains(inputs.target,'android') }}
148148 uses : PyO3/maturin-action@v1
149149 with :
150150 command : publish
151151 target : ${{ inputs.target }}
152- args : --no-sdist -i python3.11 -m Cargo.toml -u __token__ -p ${{ secrets.MATURIN_PASSWORD }}
152+ args : --no-sdist -i python3.13 -m Cargo.toml -u __token__ -p ${{ secrets.MATURIN_PASSWORD }}
153153 - name : Upload artifact
154154 uses : actions/upload-artifact@v4
155155 with :
0 commit comments