Skip to content

Commit 16b1585

Browse files
committed
Fix PyPy compatibility issue and bump to v0.1.2
1 parent a495742 commit 16b1585

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: PyO3/maturin-action@v1
3030
with:
3131
target: ${{ matrix.target }}
32-
args: --release --out dist --find-interpreter
32+
args: --release --out dist --find-interpreter --skip pypy
3333
sccache: 'true'
3434
manylinux: auto
3535
env:
@@ -58,7 +58,7 @@ jobs:
5858
uses: PyO3/maturin-action@v1
5959
with:
6060
target: ${{ matrix.target }}
61-
args: --release --out dist --find-interpreter
61+
args: --release --out dist --find-interpreter --skip pypy
6262
sccache: 'true'
6363
env:
6464
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1
@@ -85,7 +85,7 @@ jobs:
8585
uses: PyO3/maturin-action@v1
8686
with:
8787
target: ${{ matrix.target }}
88-
args: --release --out dist --find-interpreter
88+
args: --release --out dist --find-interpreter --skip pypy
8989
sccache: 'true'
9090
env:
9191
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jesse_rust"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "jesse-rust"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "High-performance Rust-based technical indicators for Jesse trading framework"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)