Skip to content

Commit ada1ba3

Browse files
author
dthomasngrokker
committed
1.5.0
+ uses python v3.13
1 parent 1b9ad37 commit ada1ba3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
jobs:
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:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = ["Development Status :: 3 - Alpha",
1919
"Programming Language :: Python :: 3.9",
2020
"Programming Language :: Python :: 3.10",
2121
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.13",
2223
"Topic :: System :: Networking",
2324
"Topic :: System :: Networking :: Firewalls"]
2425
keywords = ["ngrok", "python", "pypi", "pyo3", "ingress", "networking"]

0 commit comments

Comments
 (0)