Skip to content

Commit

Permalink
sed inplace (#3296)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed May 4, 2022
1 parent 3dbe463 commit 0bd1b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/deploy_manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rm py-polars/README.md
cp README.md py-polars/README.md
cd py-polars
rustup override set nightly-2022-04-01
export RUSTFLAGS='-C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1+sse4.2,+popcnt,+avx,+fma'
export RUSTFLAGS='-C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma'

# first the default release
maturin publish \
Expand All @@ -19,7 +19,7 @@ maturin publish \
# now compile polars with bigidx feature
sed -i 's/name = "polars"/name = "polars-u64-idx"/' pyproject.toml
# a brittle hack to insert the 'bigidx' feature
sed 's/"dynamic_groupby",/"dynamic_groupby",\n"bigidx",/' Cargo.toml
sed -i 's/"dynamic_groupby",/"dynamic_groupby",\n"bigidx",/' Cargo.toml

maturin publish \
--skip-existing \
Expand Down

0 comments on commit 0bd1b57

Please sign in to comment.