Skip to content

Commit

Permalink
python polars 0.18.4 (#9524)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jun 23, 2023
1 parent 6a43638 commit 5ee93f4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/deploy_manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ls -la
rm py-polars/README.md
cp README.md py-polars/README.md
cd py-polars
rustup override set nightly-2023-06-01
rustup override set nightly-2023-06-23
export RUSTFLAGS='-C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma'

# first the default release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- py-*

env:
RUST_TOOLCHAIN: nightly-2023-06-01
RUST_TOOLCHAIN: nightly-2023-06-23
PYTHON_VERSION: '3.7'
MATURIN_VERSION: '1.0.1'
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion polars/polars-utils/src/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ impl SyncCounter {
/// This will deref the pointer and after this all autoderef will be invalid.
pub unsafe fn manual_drop(&mut self) {
// recreate the box and drop it
unsafe { Box::from_raw(self.count.as_ptr()) };
unsafe { drop(Box::from_raw(self.count.as_ptr())) };
}
}

Expand Down
2 changes: 1 addition & 1 deletion py-polars/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 py-polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-polars"
version = "0.18.3"
version = "0.18.4"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2023-06-01"
channel = "nightly-2023-06-23"

0 comments on commit 5ee93f4

Please sign in to comment.