Skip to content

Commit

Permalink
Cargo now on 0.5.3
Browse files Browse the repository at this point in the history
Unique names for artifact upload v4
  • Loading branch information
ChristopherRabotin committed Feb 8, 2025
1 parent e02d5d1 commit 302bf29
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: cargo bench --bench "crit_planetary_data" --workspace --exclude anise-py

- name: Save benchmark artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jpl-development-ephemerides-benchmark
path: target/criterion/**/report/*
path: target/criterion/**/report/
4 changes: 2 additions & 2 deletions .github/workflows/gui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: cargo build --release --bin anise-gui --workspace --exclude anise-py

- name: Save executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: anise-gui-linux
path: target/release/anise-gui
Expand All @@ -56,7 +56,7 @@ jobs:
run: cargo build --release --bin anise-gui --workspace --exclude anise-py

- name: Save executable
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: anise-gui-windows
path: target\release\anise-gui.exe
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
fi
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-linux
path: anise-py/dist

- name: pytest
Expand Down Expand Up @@ -126,9 +126,9 @@ jobs:
working-directory: anise-py

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-windows
path: anise-py/dist

- name: pytest
Expand Down Expand Up @@ -161,9 +161,9 @@ jobs:
working-directory: anise-py

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-13
path: anise-py/dist

- name: pytest
Expand Down Expand Up @@ -196,9 +196,9 @@ jobs:
working-directory: anise-py

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-macos-14
path: anise-py/dist

- name: pytest
Expand Down Expand Up @@ -233,9 +233,9 @@ jobs:
working-directory: anise-py

- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-sdist
path: anise-py/dist

release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
python spk_validation_plots.py
- name: Save validation artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: validation-artifacts
path: target/*.html
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["anise", "anise-cli", "anise-gui", "anise-py"]

[workspace.package]
version = "0.5.2"
version = "0.5.3"
edition = "2021"
authors = ["Christopher Rabotin <[email protected]>"]
description = "ANISE provides a toolkit and files for Attitude, Navigation, Instrument, Spacecraft, and Ephemeris data. It's a modern replacement of NAIF SPICE file."
Expand Down Expand Up @@ -45,7 +45,7 @@ pyo3-log = "0.12"
numpy = "0.23"
ndarray = ">= 0.15, < 0.17"

anise = { version = "0.5.2", path = "anise", default-features = false }
anise = { version = "0.5.3", path = "anise", default-features = false }

[profile.bench]
debug = true
Expand Down

0 comments on commit 302bf29

Please sign in to comment.