diff options
author | iarspider <iarspider@gmail.com> | 2022-03-04 01:10:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 17:10:48 -0700 |
commit | a284c3e76dc796001315cefa023155c00ffc77e2 (patch) | |
tree | c138b9409854ba7040ddc1559d6dbad0023e55b6 | |
parent | efcdd64893ba8b753c9fbc70aea3d4e278241b3c (diff) | |
download | spack-a284c3e76dc796001315cefa023155c00ffc77e2.tar.gz spack-a284c3e76dc796001315cefa023155c00ffc77e2.tar.bz2 spack-a284c3e76dc796001315cefa023155c00ffc77e2.tar.xz spack-a284c3e76dc796001315cefa023155c00ffc77e2.zip |
New version: py-testpath 0.6.0; update py-flit-core dependency (#29200)
-rw-r--r-- | var/spack/repos/builtin/packages/py-testpath/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-testpath/package.py b/var/spack/repos/builtin/packages/py-testpath/package.py index ff9ebd3164..57f3c9386a 100644 --- a/var/spack/repos/builtin/packages/py-testpath/package.py +++ b/var/spack/repos/builtin/packages/py-testpath/package.py @@ -13,8 +13,10 @@ class PyTestpath(PythonPackage): homepage = "https://github.com/jupyter/testpath" pypi = "testpath/testpath-0.4.2.tar.gz" + version('0.6.0', sha256='2f1b97e6442c02681ebe01bd84f531028a7caea1af3825000f52345c30285e0f') version('0.5.0', sha256='1acf7a0bcd3004ae8357409fc33751e16d37ccc650921da1094a86581ad1e417') version('0.4.2', sha256='b694b3d9288dbd81685c5d2e7140b81365d46c29f5db4bc659de5aa6b98780f8') depends_on('python@3.5:', type=('build', 'run'), when='@0.5.0:') - depends_on('py-flit-core@3.2.0:3.2', type='build') + depends_on('py-flit-core@3.2.0:3.2', type='build', when='@:0.5.0') + depends_on('py-flit-core@3.2.0:3', type='build', when='@0.6.0:') |