Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 21 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-${{ matrix.target }}
path: dist

windows:
Expand All @@ -87,9 +87,9 @@ jobs:
args: --release --out dist --find-interpreter --manifest-path polars_hash/Cargo.toml
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows-${{ matrix.target }}
path: dist

macos:
Expand All @@ -109,9 +109,9 @@ jobs:
args: --release --out dist --find-interpreter --manifest-path polars_hash/Cargo.toml
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-${{ matrix.target }}
path: dist

sdist:
Expand All @@ -124,18 +124,28 @@ jobs:
command: sdist
args: --out dist --manifest-path polars_hash/Cargo.toml
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-sdist
path: dist

merge_wheels:
runs-on: ubuntu-latest
needs: [linux_tests, linux, macos, windows, sdist]
steps:
- name: Merge wheels
uses: actions/upload-artifact/merge@v4
with:
name: wheels
pattern: wheels-*

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux_tests, linux, macos, windows, sdist]
needs: [linux_tests, linux, macos, windows, sdist, merge_wheels]
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
- name: Publish to PyPI
Expand All @@ -144,4 +154,4 @@ jobs:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --non-interactive --skip-existing *
args: --non-interactive --skip-existing *
2 changes: 1 addition & 1 deletion polars_hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars_hash"
version = "0.5.2"
version = "0.5.3"
edition = "2021"

[lib]
Expand Down
3 changes: 2 additions & 1 deletion polars_hash/polars_hash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,8 @@ def __call__(
self,
exprs: IntoExpr | Iterable[IntoExpr],
*more_exprs: IntoExpr,
seperator: str = "",
separator: str = "",
ignore_nulls: bool = False,
) -> HExpr: ...

def __getattr__(self, name: str) -> pl.Expr: ...
Expand Down
1 change: 1 addition & 0 deletions polars_hash/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ authors = [
]
description = "Stable non-cryptographic and cryptographic hashing functions for Polars"
readme = "README.md"
dynamic = ["version"]

[project.urls]
"Homepage" = "https://github.com/ion-elgreco/polars-hash"
Expand Down
Loading