From 54380b3ed71042994482d9dd1671a61baadd6a7f Mon Sep 17 00:00:00 2001 From: Mathieu Kniewallner Date: Sat, 5 Oct 2024 18:00:44 +0200 Subject: [PATCH] chore: use 0.6.9 for Ruff parser (#880) --- Cargo.lock | 10 +++++----- Cargo.toml | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 63bc3a69..1981feb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -528,7 +528,7 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "ruff_python_ast" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff?tag=0.6.2#02c4373a4927657a8825d18ae8f0877806cd1f15" +source = "git+https://github.com/astral-sh/ruff?tag=0.6.9#975be9c1c6cc8f8f4e52bdad8123d151192c7123" dependencies = [ "aho-corasick", "bitflags", @@ -545,7 +545,7 @@ dependencies = [ [[package]] name = "ruff_python_parser" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff?tag=0.6.2#02c4373a4927657a8825d18ae8f0877806cd1f15" +source = "git+https://github.com/astral-sh/ruff?tag=0.6.9#975be9c1c6cc8f8f4e52bdad8123d151192c7123" dependencies = [ "bitflags", "bstr", @@ -564,7 +564,7 @@ dependencies = [ [[package]] name = "ruff_python_trivia" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff?tag=0.6.2#02c4373a4927657a8825d18ae8f0877806cd1f15" +source = "git+https://github.com/astral-sh/ruff?tag=0.6.9#975be9c1c6cc8f8f4e52bdad8123d151192c7123" dependencies = [ "itertools", "ruff_source_file", @@ -575,7 +575,7 @@ dependencies = [ [[package]] name = "ruff_source_file" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff?tag=0.6.2#02c4373a4927657a8825d18ae8f0877806cd1f15" +source = "git+https://github.com/astral-sh/ruff?tag=0.6.9#975be9c1c6cc8f8f4e52bdad8123d151192c7123" dependencies = [ "memchr", "once_cell", @@ -585,7 +585,7 @@ dependencies = [ [[package]] name = "ruff_text_size" version = "0.0.0" -source = "git+https://github.com/astral-sh/ruff?tag=0.6.2#02c4373a4927657a8825d18ae8f0877806cd1f15" +source = "git+https://github.com/astral-sh/ruff?tag=0.6.9#975be9c1c6cc8f8f4e52bdad8123d151192c7123" [[package]] name = "rustc-hash" diff --git a/Cargo.toml b/Cargo.toml index 5e5f25b5..41ff72df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,10 @@ pyo3 = { version = "=0.22.3", features = ["abi3-py39", "generate-import-lib"] } pyo3-log = "=0.11.0" rayon = "=1.10.0" regex = "=1.11.0" -ruff_python_ast = { git = "https://github.com/astral-sh/ruff", tag = "0.6.2" } -ruff_python_parser = { git = "https://github.com/astral-sh/ruff", tag = "0.6.2" } -ruff_source_file = { git = "https://github.com/astral-sh/ruff", tag = "0.6.2" } -ruff_text_size = { git = "https://github.com/astral-sh/ruff", tag = "0.6.2" } +ruff_python_ast = { git = "https://github.com/astral-sh/ruff", tag = "0.6.9" } +ruff_python_parser = { git = "https://github.com/astral-sh/ruff", tag = "0.6.9" } +ruff_source_file = { git = "https://github.com/astral-sh/ruff", tag = "0.6.9" } +ruff_text_size = { git = "https://github.com/astral-sh/ruff", tag = "0.6.9" } serde_json = "=1.0.128" [profile.release]