Update py-scikit-build-core to version 0.6.1 (#40779)

* Update to latest version

* Fix linebreak

* Make suggested changes

* bumped to 0.6.1

* Update var/spack/repos/builtin/packages/py-scikit-build-core/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

---------

Co-authored-by: Chris Richardson <cnr12@cam.ac.uk>
Co-authored-by: Matt Archer <ma595@cam.ac.uk>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Chris Richardson 2023-11-21 19:17:07 +00:00 committed by GitHub
parent 70bed662fc
commit f2192a48ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,8 @@ class PyScikitBuildCore(PythonPackage):
maintainers("wdconinc")
version("0.6.1", sha256="392254a4ca7235c27a4be98cc24cd708f563171961ce37cff66120ebfda20b7a")
version("0.6.0", sha256="1bea5ed83610b367f3446badd996f2356690548188d6d38e5b93152df311a7ae")
version("0.2.0", sha256="d2a76d9447a412038dc5e25dd259b03c25278661a0c7c3da766bb971c1a9acd2")
variant("pyproject", default=False, description="Enable pyproject.toml support")
@ -29,6 +31,7 @@ class PyScikitBuildCore(PythonPackage):
# Dependencies
depends_on("py-exceptiongroup", when="^python@:3.10", type=("build", "run"))
depends_on("py-importlib-metadata", when="@0.3.0: ^python@:3.7")
depends_on("py-importlib-resources@1.3:", when="^python@:3.8", type=("build", "run"))
depends_on("py-packaging@20.9:", type=("build", "run"))
depends_on("py-tomli@1.1:", when="^python@:3.10", type=("build", "run"))
@ -49,6 +52,7 @@ class PyScikitBuildCore(PythonPackage):
depends_on("py-pytest@7:", type="test")
depends_on("py-pytest-subprocess@1.5:", type="test")
depends_on("py-setuptools", type="test")
depends_on("py-virtualenv", when="@0.6:", type="test")
depends_on("py-wheel", type="test")
@run_after("install")