Skip to content

Commit 64eaeff

Browse files
authored
build: Python pre-release 1.34.0b5 (#24699)
1 parent d3aa828 commit 64eaeff

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/polars-python/src/c_api/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub mod allocator;
33

44
// Since Python Polars cannot share its version into here and we need to be able to build this
55
// package correctly without `py-polars`, we need to mirror the version here.
6-
pub static PYPOLARS_VERSION: &str = "1.34.0-beta.4";
6+
pub static PYPOLARS_VERSION: &str = "1.34.0-beta.5";
77
pub static RUNTIME_REPR: &str = "unknown";
88

99
use pyo3::prelude::*;

py-polars/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
authors = [
1010
{ name = "Ritchie Vink", email = "[email protected]" },
1111
]
12-
version = "1.34.0b4"
12+
version = "1.34.0b5"
1313
license = { file = "LICENSE" }
1414
requires-python = ">=3.9"
1515

@@ -32,7 +32,7 @@ classifiers = [
3232
"Topic :: Scientific/Engineering",
3333
"Typing :: Typed",
3434
]
35-
dependencies = ["polars-runtime-32 == 1.34.0b4"]
35+
dependencies = ["polars-runtime-32 == 1.34.0b5"]
3636

3737
[project.urls]
3838
Homepage = "https://www.pola.rs/"
@@ -42,8 +42,8 @@ Changelog = "https://github.com/pola-rs/polars/releases"
4242

4343
[project.optional-dependencies]
4444
# Runtimes
45-
rt64 = ["polars-runtime-64 == 1.34.0b4"]
46-
rtcompat = ["polars-runtime-compat == 1.34.0b4"]
45+
rt64 = ["polars-runtime-64 == 1.34.0b5"]
46+
rtcompat = ["polars-runtime-compat == 1.34.0b5"]
4747

4848
# NOTE: keep this list in sync with show_versions() and requirements-dev.txt
4949
polars_cloud = ["polars_cloud >= 0.0.1a1"]

py-polars/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "py-polars"
3-
version = "1.34.0-beta.4"
3+
version = "1.34.0-beta.5"
44
edition = "2021"
55

66
[lib]

py-polars/src/polars/_plr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from polars._cpu_check import check_cpu_flags
99

10-
PKG_VERSION = "1.34.0-beta.4"
10+
PKG_VERSION = "1.34.0-beta.5"
1111

1212
# Replaced during the build process with our list of required feature flags
1313
# enabled at compile time.

0 commit comments

Comments
 (0)