ruff: 0.6.3 -> 0.6.4 (#339848)

This commit is contained in:
Pol Dellaiera 2024-09-06 23:16:50 +02:00 committed by GitHub
commit b68e5fcba9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 17 additions and 13 deletions

View File

@ -1,9 +1,13 @@
{
lib,
stdenv,
python3,
fetchFromGitHub,
stdenv,
# nativeCheckInputs
ruff,
# passthru
nix-update-script,
testers,
ruff-lsp,
@ -11,15 +15,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "ruff-lsp";
version = "0.0.55";
version = "0.0.56";
pyproject = true;
disabled = python3.pythonOlder "3.7";
src = fetchFromGitHub {
owner = "astral-sh";
repo = "ruff-lsp";
rev = "refs/tags/v${version}";
hash = "sha256-FFIZ8fDAPK03tnkjd2AUrz7iL8S9FziJQJKOxAisu48=";
hash = "sha256-L5bfGW5R9kDCK8zcFh+a/zquJefwKxOB0JdYDTyPFuQ=";
};
postPatch = ''

View File

@ -1803,9 +1803,9 @@ dependencies = [
[[package]]
name = "quick-junit"
version = "0.4.0"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfc1a6a5406a114913df2df8507998c755311b55b78584bed5f6e88f6417c4d4"
checksum = "62ffd2f9a162cfae131bed6d9d1ed60adced33be340a94f96952897d7cb0c240"
dependencies = [
"chrono",
"indexmap",
@ -1818,9 +1818,9 @@ dependencies = [
[[package]]
name = "quick-xml"
version = "0.31.0"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
checksum = "96a05e2e8efddfa51a84ca47cec303fac86c8541b686d37cac5efc0e094417bc"
dependencies = [
"memchr",
]
@ -1997,6 +1997,7 @@ dependencies = [
"ruff_text_size",
"rustc-hash 2.0.0",
"salsa",
"tempfile",
"tracing",
]
@ -2090,7 +2091,7 @@ dependencies = [
[[package]]
name = "ruff"
version = "0.6.3"
version = "0.6.4"
dependencies = [
"anyhow",
"argfile",
@ -2283,7 +2284,7 @@ dependencies = [
[[package]]
name = "ruff_linter"
version = "0.6.3"
version = "0.6.4"
dependencies = [
"aho-corasick",
"annotate-snippets 0.9.2",
@ -2603,7 +2604,7 @@ dependencies = [
[[package]]
name = "ruff_wasm"
version = "0.6.3"
version = "0.6.4"
dependencies = [
"console_error_panic_hook",
"console_log",

View File

@ -14,13 +14,13 @@
rustPlatform.buildRustPackage rec {
pname = "ruff";
version = "0.6.3";
version = "0.6.4";
src = fetchFromGitHub {
owner = "astral-sh";
repo = "ruff";
rev = "refs/tags/${version}";
hash = "sha256-5jS2NCl01kgUAd8hFtjJCOwRxi0XMM2x7VMpJLEgbOQ=";
hash = "sha256-AldYWbLtkVtM1sWBCgNym9RZ0QszIh59vQhoysl5/3I=";
};
cargoLock = {