Skip to content

Commit

Permalink
fix: artifacts@v4 workaround (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwiewior authored Jan 11, 2025
1 parent 8a99677 commit cfcbafe
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-manylinux-${{ matrix.target }}
path: dist
windows:
runs-on: windows-latest
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-win-${{ matrix.target }}
path: dist

macos:
Expand All @@ -135,7 +135,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-${{ matrix.target }}
path: dist
env:
RUSTFLAGS: "-Clink-arg=-undefined -Clink-arg=dynamic_lookup"
Expand All @@ -155,7 +155,7 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux-${{ matrix.target }}
path: dist

release:
Expand All @@ -169,7 +169,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: wheels-*
merge-multiple: true
path: dist
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polars_bio"
version = "0.5.1"
version = "0.5.2"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion polars_bio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
POLARS_BIO_MAX_THREADS = "datafusion.execution.target_partitions"


__version__ = "0.5.1"
__version__ = "0.5.2"
__all__ = [
"overlap",
"nearest",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "polars-bio"
version = "0.5.1"
version = "0.5.2"
description = "Blazing fast genomic operations on large Python dataframes"
authors = []
requires-python = ">=3.9"
Expand Down

0 comments on commit cfcbafe

Please sign in to comment.