Skip to content

Commit 3991808

Browse files
committed
0.0.235
1 parent ca863c6 commit 3991808

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/release.yaml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ jobs:
3333
- python-version: '3.14'
3434
manylinux_image: 'quay.io/pypa/manylinux2014_x86_64'
3535
plat: 'manylinux2014_x86_64'
36-
- python-version: '3.14t'
37-
manylinux_image: 'ghcr.io/pypa/manylinux/manylinux_2_31_x86_64'
38-
plat: 'manylinux_2_31_x86_64'
36+
- runner-python: '3.13'
37+
python-version: '3.14t'
38+
manylinux_image: 'quay.io/pypa/manylinux2014_x86_64'
39+
plat: 'manylinux2014_x86_64'
3940
runs-on: ubuntu-latest
4041
steps:
4142
- name: Check out repository
@@ -68,7 +69,15 @@ jobs:
6869
strategy:
6970
max-parallel: 4
7071
matrix:
71-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']
72+
include:
73+
- python-version: '3.9'
74+
- python-version: '3.10'
75+
- python-version: '3.11'
76+
- python-version: '3.12'
77+
- python-version: '3.13'
78+
- python-version: '3.14'
79+
- runner-python: '3.13'
80+
python-version: '3.14t'
7281

7382
steps:
7483
- uses: actions/checkout@v3.5.3
@@ -82,7 +91,7 @@ jobs:
8291
- name: Set up Python ${{ matrix.python-version }} x64
8392
uses: actions/setup-python@v4
8493
with:
85-
python-version: ${{ matrix.python-version }}
94+
python-version: ${{ matrix.runner-python || matrix.python-version }}
8695

8796
- name: Install Python package dependencies
8897
run: python -m pip install --upgrade cython wheel numpy setuptools_rust

orso/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
1212

13-
__version__: str = "0.0.234"
13+
__version__: str = "0.0.235"
1414
__author__: str = "@joocer"

0 commit comments

Comments
 (0)