File tree Expand file tree Collapse file tree 6 files changed +15
-15
lines changed
crates/polars-python/src/c_api Expand file tree Collapse file tree 6 files changed +15
-15
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 " ;
77pub static RUNTIME_REPR : & str = "unknown" ;
88
99use pyo3:: prelude:: * ;
Original file line number Diff line number Diff line change 11[package ]
22name = " py-polars"
3- version = " 1.34.0-beta.2 "
3+ version = " 1.34.0-beta.3 "
44edition = " 2021"
55
66[lib ]
Original file line number Diff line number Diff line change 77
88from 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.
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=61" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [tool .setuptools ]
6+ packages = [" polars" ]
7+
18[project ]
29name = " polars"
310description = " Blazingly fast DataFrame library"
411readme = " README.md"
512authors = [
613 {
name =
" Ritchie Vink" ,
email =
" [email protected] " },
714]
8- version = " 1.34.0b2 "
15+ version = " 1.34.0b3 "
916license = { file = " LICENSE" }
1017requires-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 ]
3441Homepage = " https://www.pola.rs/"
@@ -38,8 +45,8 @@ Changelog = "https://github.com/pola-rs/polars/releases"
3845
3946[project .optional-dependencies ]
4047# Runtimes
41- rt64 = [" polars-runtime-64 == 1.34.0b2 " ]
42- rtcompat = [" polars-runtime-compat == 1.34.0b2 " ]
48+ rt64 = [" polars-runtime-64 == 1.34.0b3 " ]
49+ rtcompat = [" polars-runtime-compat == 1.34.0b3 " ]
4350
4451# NOTE: keep this list in sync with show_versions() and requirements-dev.txt
4552polars_cloud = [" polars_cloud >= 0.0.1a1" ]
You can’t perform that action at this time.
0 commit comments