X Tutup
Skip to content

Commit fbab8fc

Browse files
authored
Update ruff to 0.15.5 (RustPython#7366)
1 parent e669944 commit fbab8fc

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ jobs:
481481
- name: Install ruff
482482
uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3.6.1
483483
with:
484-
version: "0.15.4"
484+
version: "0.15.5"
485485
args: "--version"
486486

487487
- run: ruff check --diff

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,12 @@ rustpython-sre_engine = { path = "crates/sre_engine", version = "0.4.0" }
155155
rustpython-wtf8 = { path = "crates/wtf8", version = "0.4.0" }
156156
rustpython-doc = { path = "crates/doc", version = "0.4.0" }
157157

158-
# Ruff tag 0.15.4 is based on commit f14edd8661e2803254f89265548c7487f47a09f6
158+
# Ruff tag 0.15.5 is based on commit 5e4a3d9c3b381df20f6a52caef0f56ed0ebc74be
159159
# at the time of this capture. We use the commit hash to ensure reproducible builds.
160-
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", rev = "f14edd8661e2803254f89265548c7487f47a09f6" }
161-
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", rev = "f14edd8661e2803254f89265548c7487f47a09f6" }
162-
ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", rev = "f14edd8661e2803254f89265548c7487f47a09f6" }
163-
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", rev = "f14edd8661e2803254f89265548c7487f47a09f6" }
160+
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", rev = "5e4a3d9c3b381df20f6a52caef0f56ed0ebc74be" }
161+
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", rev = "5e4a3d9c3b381df20f6a52caef0f56ed0ebc74be" }
162+
ruff_text_size = { git = "https://github.com/astral-sh/ruff.git", rev = "5e4a3d9c3b381df20f6a52caef0f56ed0ebc74be" }
163+
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", rev = "5e4a3d9c3b381df20f6a52caef0f56ed0ebc74be" }
164164

165165
phf = { version = "0.13.1", default-features = false, features = ["macros"]}
166166
ahash = "0.8.12"

0 commit comments

Comments
 (0)
X Tutup