Skip to content

Commit 5f2b122

Browse files
committed
v0.1.1 Added ARM platforms and max compiling optimizations for release
1 parent 88cae62 commit 5f2b122

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
platform:
2727
- runner: ubuntu-22.04
2828
target: x86_64
29+
- runner: ubuntu-22.04
30+
target: aarch64
2931
steps:
3032
- uses: actions/checkout@v4
3133
- uses: actions/setup-python@v5
@@ -76,6 +78,8 @@ jobs:
7678
platform:
7779
- runner: macos-13
7880
target: x86_64
81+
- runner: macos-14
82+
target: aarch64
7983
steps:
8084
- uses: actions/checkout@v4
8185
- uses: actions/setup-python@v5

greyjack/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

greyjack/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "greyjack"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -22,8 +22,8 @@ polars = { version = "0.46.0", features = ["lazy", "ndarray", "serde", "abs"] }
2222
# if you build lib from source code
2323
# uncomment to gain max performance (increases calculation speed about 5-10%,
2424
# but also increases build time ~20x times)
25-
#[profile.release]
26-
#lto = true
27-
#codegen-units = 1
28-
#debug = true
29-
#opt-level = 3
25+
[profile.release]
26+
lto = true
27+
codegen-units = 1
28+
debug = true
29+
opt-level = 3

greyjack/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ features = ["pyo3/extension-module"]
77

88
[project]
99
name = "greyjack"
10-
version = "0.1.0"
10+
version = "0.1.1"
1111
requires-python = ">=3.9"
1212
dependencies = [
1313
"dill",

0 commit comments

Comments
 (0)