Skip to content

Commit

Permalink
python polars 0.14.7 (#4647)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Sep 1, 2022
1 parent 900de49 commit 6c6c8e4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 25 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/create-py-release-manylinux-lts-cpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: 3.7
architecture: x64
- name: Prepare maturin publish
shell: bash
run: |
Expand All @@ -23,14 +27,12 @@ jobs:
run: |
sed -i 's/name = "polars"/name = "polars-lts-cpu"/' py-polars/pyproject.toml
- name: publish x64_64 lts-cpu
uses: messense/maturin-action@main
uses: messense/maturin-action@v1
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
RUSTFLAGS: '-C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt'
with:
rust-toolchain: nightly-2022-08-22
# don't use `2_17` it does not work: https://github.com/pola-rs/polars/runs/6107328960
manylinux: '2_24'
maturin-version: '0.13.0'
maturin-version: '0.13.2'
command: publish
args: -m py-polars/Cargo.toml --skip-existing -o wheels -i python -u ritchie46
args: -m py-polars/Cargo.toml --skip-existing -o wheels -u ritchie46
26 changes: 12 additions & 14 deletions .github/workflows/create-py-release-manylinux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,29 @@ jobs:
run: |
rm py-polars/README.md
cp README.md py-polars/README.md
cd py-polars
- uses: actions/setup-python@v2
with:
python-version: 3.7
architecture: x64

- name: publish x64_64
uses: messense/maturin-action@main
uses: messense/maturin-action@v1
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
RUSTFLAGS: '-C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma'
with:
rust-toolchain: nightly-2022-08-22
# don't use `2_17` it does not work: https://github.com/pola-rs/polars/runs/6107328960
manylinux: '2_24'
maturin-version: '0.13.0'
maturin-version: '0.13.2'
command: publish
args: -m py-polars/Cargo.toml --skip-existing -o wheels -i python -u ritchie46
args: -m py-polars/Cargo.toml --skip-existing -o wheels -u ritchie46
# needed for docker on apple m1
- name: publish aarch64
uses: messense/maturin-action@main
uses: messense/maturin-action@v1
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
with:
rust-toolchain: nightly-2022-08-22
# don't use `2_17` it does not work: https://github.com/pola-rs/polars/runs/6107328960
manylinux: '2_24'
target: aarch64-unknown-linux-gnu
maturin-version: '0.13.0'
command: publish
Expand All @@ -52,14 +52,12 @@ jobs:
# a brittle hack to insert the 'bigidx' feature
sed -i 's/"dynamic_groupby",/"dynamic_groupby",\n"bigidx",/' py-polars/Cargo.toml
- name: publish x64_64 bigidx
uses: messense/maturin-action@main
uses: messense/maturin-action@v1
env:
MATURIN_PASSWORD: ${{ secrets.PYPI_PASS }}
RUSTFLAGS: '-C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma'
with:
rust-toolchain: nightly-2022-08-22
# don't use `2_17` it does not work: https://github.com/pola-rs/polars/runs/6107328960
manylinux: '2_24'
maturin-version: '0.13.0'
maturin-version: '0.13.2'
command: publish
args: -m py-polars/Cargo.toml --skip-existing -o wheels -i python -u ritchie46
args: -m py-polars/Cargo.toml --skip-existing -o wheels -u ritchie46
5 changes: 1 addition & 4 deletions polars/polars-lazy/src/physical_plan/expressions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,7 @@ impl<'a> AggregationContext<'a> {
})
}
// sliced groups are already in correct order
GroupsProxy::Slice { groups, .. } => {
dbg!(groups);
dbg!("hree");
}
GroupsProxy::Slice { .. } => {}
}
self.update_groups = UpdateGroups::No;
}
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.14.6"
version = "0.14.7"
authors = ["ritchie46 <ritchie46@gmail.com>"]
documentation = "https://pola-rs.github.io/polars/py-polars/html/reference/index.html"
edition = "2021"
Expand Down

0 comments on commit 6c6c8e4

Please sign in to comment.