Skip to content

Commit ddf5907

Browse files
committed
build: Include source in main package (#24640)
1 parent 615a93e commit ddf5907

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/release-python.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -462,13 +462,6 @@ jobs:
462462
env:
463463
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
464464

465-
- name: Upload sdist to GitHub release
466-
run: gh release upload $TAG $FILES --clobber
467-
env:
468-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
469-
TAG: ${{ steps.github-release.outputs.tag_name }}
470-
FILES: wasm-dist/polars-*.whl
471-
472465
- name: Publish GitHub release
473466
if: inputs.dry-run == false
474467
run: gh release edit $TAG --draft=false

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.2";
6+
pub static PYPOLARS_VERSION: &str = "1.34.0-beta.3";
77
pub static RUNTIME_REPR: &str = "unknown";
88

99
use pyo3::prelude::*;

py-polars/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.2"
3+
version = "1.34.0-beta.3"
44
edition = "2021"
55

66
[lib]

py-polars/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.2"
10+
PKG_VERSION = "1.34.0-beta.3"
1111

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

py-polars/polars/pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1+
[build-system]
2+
requires = ["setuptools>=61", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[tool.setuptools]
6+
packages = ["polars"]
7+
18
[project]
29
name = "polars"
310
description = "Blazingly fast DataFrame library"
411
readme = "README.md"
512
authors = [
613
{ name = "Ritchie Vink", email = "[email protected]" },
714
]
8-
version = "1.34.0b2"
15+
version = "1.34.0b3"
916
license = { file = "LICENSE" }
1017
requires-python = ">=3.9"
1118

@@ -28,7 +35,7 @@ classifiers = [
2835
"Topic :: Scientific/Engineering",
2936
"Typing :: Typed",
3037
]
31-
dependencies = ["polars-runtime-32 == 1.34.0b2"]
38+
dependencies = ["polars-runtime-32 == 1.34.0b3"]
3239

3340
[project.urls]
3441
Homepage = "https://www.pola.rs/"

0 commit comments

Comments
 (0)