Skip to content

Commit 38b298b

Browse files
authored
Python Polars 1.25.1 (#21763)
1 parent 8826e15 commit 38b298b

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

.github/workflows/release-python.yml

+6-13
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
args: >
7676
--manifest-path py-polars/Cargo.toml
7777
--out dist
78-
maturin-version: 1.7.4
78+
maturin-version: 1.8.3
7979

8080
- name: Test sdist
8181
run: |
@@ -289,7 +289,7 @@ jobs:
289289
--manifest-path py-polars/Cargo.toml
290290
--out dist
291291
manylinux: ${{ matrix.architecture == 'aarch64' && '2_24' || 'auto' }}
292-
maturin-version: 1.7.4
292+
maturin-version: 1.8.3
293293

294294
- name: Test wheel
295295
# Only test on x86-64 for now as this matches the runner architecture
@@ -335,15 +335,8 @@ jobs:
335335
uses: mymindstorm/setup-emsdk@v14
336336
with:
337337
# This should match the exact version of Emscripten used by Pyodide
338-
version: 3.1.58
339-
340-
- name: Install LLVM
341-
# This should match the major version of LLVM expected by Emscripten
342-
run: |
343-
wget https://apt.llvm.org/llvm.sh
344-
chmod +x llvm.sh
345-
sudo ./llvm.sh 19
346-
echo "EM_LLVM_ROOT=/usr/lib/llvm-19/bin" >> $GITHUB_ENV
338+
# UPDATE; set to latest due to breaking build
339+
version: latest
347340

348341
- name: Set CFLAGS and RUSTFLAGS for wasm32
349342
run: |
@@ -360,7 +353,7 @@ jobs:
360353
--manifest-path py-polars/Cargo.toml
361354
--interpreter python3.10
362355
--out wasm-dist
363-
maturin-version: 1.7.4
356+
maturin-version: 1.8.3
364357

365358
- name: Upload wheel
366359
uses: actions/upload-artifact@v4
@@ -369,7 +362,7 @@ jobs:
369362
path: wasm-dist/*.whl
370363

371364
publish-to-pypi:
372-
needs: [create-sdist, build-wheels]
365+
needs: [create-sdist, build-wheels, build-wheel-pyodide]
373366
environment:
374367
name: release-python
375368
url: https://pypi.org/project/polars

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

py-polars/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "py-polars"
3-
version = "1.25.0"
3+
version = "1.25.1"
44
edition = "2021"
55

66
[lib]

0 commit comments

Comments
 (0)