Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/polars-python/src/c_api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub mod allocator;
// Since Python Polars cannot share its version into here and we need to be able to build this
// package correctly without `py-polars`, we need to mirror the version here.
// example: 1.35.0-beta.1
pub static PYPOLARS_VERSION: &str = "1.39.3";
pub static PYPOLARS_VERSION: &str = "1.40.0";

// We allow multiple features to be set simultaneously so checking with all-features
// is possible. In the case multiple are set or none at all, we set the repr to "unknown".
Expand Down
8 changes: 4 additions & 4 deletions py-polars/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
{ name = "Ritchie Vink", email = "ritchie46@gmail.com" },
]
# example: 1.35.0b1
version = "1.39.3"
version = "1.40.0"
license = { file = "LICENSE" }
requires-python = ">=3.10"

Expand All @@ -33,7 +33,7 @@ classifiers = [
"Typing :: Typed",
]
# example: 1.35.0b1
dependencies = ["polars-runtime-32 == 1.39.3"]
dependencies = ["polars-runtime-32 == 1.40.0"]

[project.urls]
Homepage = "https://www.pola.rs/"
Expand All @@ -44,8 +44,8 @@ Changelog = "https://github.com/pola-rs/polars/releases"
[project.optional-dependencies]
# Runtimes
# example: 1.35.0b1
rt64 = ["polars-runtime-64 == 1.39.3"]
rtcompat = ["polars-runtime-compat == 1.39.3"]
rt64 = ["polars-runtime-64 == 1.40.0"]
rtcompat = ["polars-runtime-compat == 1.40.0"]

# NOTE: keep this list in sync with show_versions() and requirements-dev.txt
polars_cloud = ["polars_cloud >= 0.4.0"]
Expand Down
2 changes: 1 addition & 1 deletion py-polars/runtime/polars-runtime-32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "polars-runtime-32"
# example: 1.35.0-beta.1
version = "1.39.3"
version = "1.40.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion py-polars/runtime/polars-runtime-64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "polars-runtime-64"
# example: 1.35.0-beta.1
version = "1.39.3"
version = "1.40.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion py-polars/runtime/polars-runtime-compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "polars-runtime-compat"
# example: 1.35.0-beta.1
version = "1.39.3"
version = "1.40.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion py-polars/runtime/template/Cargo.template.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "polars-runtime-{{%RT_SUFFIX%}}"
# example: 1.35.0-beta.1
version = "1.39.3"
version = "1.40.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion py-polars/src/polars/_plr.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from polars._cpu_check import check_cpu_flags

# example: 1.35.0-beta.1
PKG_VERSION = "1.39.3"
PKG_VERSION = "1.40.0"


def rt_compat() -> None:
Expand Down
Loading