summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJuan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com>2023-12-06 15:41:20 +0100
committerGitHub <noreply@github.com>2023-12-06 08:41:20 -0600
commit51435d6d69825f9b40b9fe46d0290c5d321ef9a7 (patch)
tree43def1d1e776771901a3b1c8ecf2584a8267d3ac /var
parent8ce110e06912604f7fed880d88b255d3c3200dd6 (diff)
downloadspack-51435d6d69825f9b40b9fe46d0290c5d321ef9a7.tar.gz
spack-51435d6d69825f9b40b9fe46d0290c5d321ef9a7.tar.bz2
spack-51435d6d69825f9b40b9fe46d0290c5d321ef9a7.tar.xz
spack-51435d6d69825f9b40b9fe46d0290c5d321ef9a7.zip
ruff: add version 0.1.6 (#41355)
* Add a new version of ruff * Add a comment about where the dependency can be found --------- Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ruff/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ruff/package.py b/var/spack/repos/builtin/packages/py-ruff/package.py
index 667e7935d3..e1df414e80 100644
--- a/var/spack/repos/builtin/packages/py-ruff/package.py
+++ b/var/spack/repos/builtin/packages/py-ruff/package.py
@@ -13,6 +13,11 @@ class PyRuff(PythonPackage):
pypi = "ruff/ruff-0.0.276.tar.gz"
git = "https://github.com/astral-sh/ruff.git"
+ version("0.1.6", sha256="1b09f29b16c6ead5ea6b097ef2764b42372aebe363722f1605ecbcd2b9207184")
version("0.0.276", sha256="d456c86eb6ce9225507f24fcc7bf72fa031bb7cc750023310e62889bf4ad4b6a")
depends_on("py-maturin@1", type="build")
+
+ # Found in Cargo.toml
+ depends_on("rust@1.71:", when="@0.1.6:", type="build")
+ depends_on("rust@1.70:", when="@0.0.276:", type="build")