Skip to content

Commit

Permalink
improved ci run time
Browse files Browse the repository at this point in the history
  • Loading branch information
deadsoul44 committed Jun 8, 2024
1 parent 0f98f95 commit 4b68c90
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- name: Build wheels with maturin
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -78,8 +76,6 @@ jobs:
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- name: Build wheels with maturin
uses: PyO3/maturin-action@v1
with:
Expand All @@ -106,7 +102,6 @@ jobs:
strategy:
matrix:
pyversion: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# target: [x86_64, i686]
steps:
- uses: actions/checkout@v4
- name: Install latests stable Rust
Expand All @@ -128,8 +123,6 @@ jobs:
python -m pip install -e .[dev]
cd ..
python scripts/make_resources.py
- name: Run tests
run: cargo test --verbose
- name: Build wheels with maturin
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 = "perpetual"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
authors = ["Mutlu Simsek <[email protected]>"]
homepage = "https://perpetual-ml.com/docs"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ pip install perpetual
To use in a rust project, add the following to your Cargo.toml file.

```toml
perpetual = "0.0.3"
perpetual = "0.0.4"
```
4 changes: 2 additions & 2 deletions python-package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-perpetual"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
authors = ["Mutlu Simsek <[email protected]>"]
homepage = "https://perpetual-ml.com/docs"
Expand All @@ -16,7 +16,7 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.21.0", features = ["extension-module"] }
perpetual_rs = {package="perpetual", version = "0.0.3", path = "../" }
perpetual_rs = {package="perpetual", version = "0.0.4", path = "../" }
numpy = "0.21.0"
ndarray = "0.15.1"
serde_plain = { version = "1.0" }
Expand Down

0 comments on commit 4b68c90

Please sign in to comment.