Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/codecov/codecov-ac…
Browse files Browse the repository at this point in the history
…tion-5
  • Loading branch information
jeertmans authored Dec 6, 2024
2 parents 57ef3e0 + 8bbdd29 commit 68bdb36
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 25 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,12 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
cache-dependency-path: uv.lock

- name: Setup uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
args: [--autofix, --trailing-commas]
exclude: Cargo.lock
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.0
rev: v0.8.1
hooks:
- id: ruff
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ keywords:
- Radio Propagation
- Modeling
license: MIT
version: v0.0.27
version: v0.0.28
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion differt-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ unexpected_cfgs = {level = "warn", check-cfg = ['cfg(tarpaulin_include)']}
edition = "2021"
name = "differt-core"
rust-version = "1.78.0"
version = "0.0.27"
version = "0.0.28"
2 changes: 1 addition & 1 deletion differt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
dependencies = [
"beartype>=0.19.0",
"chex>=0.1.86",
"differt-core==0.0.27",
"differt-core==0.0.28",
"equinox>=0.11.5",
"filelock>=3.15.4",
"jax>=0.4.32",
Expand Down
2 changes: 1 addition & 1 deletion differt/src/differt/scene/_triangle_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from jax.experimental import mesh_utils
from jax.experimental.shard_map import shard_map
from jax.sharding import Mesh
from jax.sharding import PartitionSpec as P # noqa: N814
from jax.sharding import PartitionSpec as P
from jaxtyping import Array, ArrayLike, Bool, Float, Int, jaxtyped

import differt_core.scene
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tests = [
allow_dirty = false
commit = true
commit_args = ""
current_version = "0.0.27"
current_version = "0.0.28"
ignore_missing_version = false
message = "chore(deps): bump version from {current_version} to {new_version}"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
Expand Down
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 68bdb36

Please sign in to comment.