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:
462
462
env :
463
463
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
464
464
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
-
472
465
- name : Publish GitHub release
473
466
if : inputs.dry-run == false
474
467
run : gh release edit $TAG --draft=false
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ pub mod allocator;
3
3
4
4
// Since Python Polars cannot share its version into here and we need to be able to build this
5
5
// 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 " ;
7
7
pub static RUNTIME_REPR : & str = "unknown" ;
8
8
9
9
use pyo3:: prelude:: * ;
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " py-polars"
3
- version = " 1.34.0-beta.2 "
3
+ version = " 1.34.0-beta.3 "
4
4
edition = " 2021"
5
5
6
6
[lib ]
Original file line number Diff line number Diff line change 7
7
8
8
from polars ._cpu_check import check_cpu_flags
9
9
10
- PKG_VERSION = "1.34.0-beta.2 "
10
+ PKG_VERSION = "1.34.0-beta.3 "
11
11
12
12
# Replaced during the build process with our list of required feature flags
13
13
# 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
+
1
8
[project ]
2
9
name = " polars"
3
10
description = " Blazingly fast DataFrame library"
4
11
readme = " README.md"
5
12
authors = [
6
13
{
name =
" Ritchie Vink" ,
email =
" [email protected] " },
7
14
]
8
- version = " 1.34.0b2 "
15
+ version = " 1.34.0b3 "
9
16
license = { file = " LICENSE" }
10
17
requires-python = " >=3.9"
11
18
@@ -28,7 +35,7 @@ classifiers = [
28
35
" Topic :: Scientific/Engineering" ,
29
36
" Typing :: Typed" ,
30
37
]
31
- dependencies = [" polars-runtime-32 == 1.34.0b2 " ]
38
+ dependencies = [" polars-runtime-32 == 1.34.0b3 " ]
32
39
33
40
[project .urls ]
34
41
Homepage = " https://www.pola.rs/"
@@ -38,8 +45,8 @@ Changelog = "https://github.com/pola-rs/polars/releases"
38
45
39
46
[project .optional-dependencies ]
40
47
# 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 " ]
43
50
44
51
# NOTE: keep this list in sync with show_versions() and requirements-dev.txt
45
52
polars_cloud = [" polars_cloud >= 0.0.1a1" ]
You can’t perform that action at this time.
0 commit comments