From 9b22eb70606b7d915c09767239bc65b60ba951c2 Mon Sep 17 00:00:00 2001 From: Andrew Davison <andrew.davison@cnrs.fr> Date: Mon, 6 Feb 2023 13:23:30 +0100 Subject: [PATCH] Update quantities to 0.14.0 --- packages/py-quantities/package.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/py-quantities/package.py b/packages/py-quantities/package.py index 6bc6c11b..22f09222 100644 --- a/packages/py-quantities/package.py +++ b/packages/py-quantities/package.py @@ -13,6 +13,7 @@ class PyQuantities(PythonPackage): pypi = "quantities/quantities-0.12.1.tar.gz" maintainers = ['apdavison'] + version('0.14.0', sha256='b5cbe363e27dc6d16abeba9fab7a5c98775d81b7d7f16cc691ba00041e02e1d0') version('0.13.0', sha256='0fde20115410de21cefa786f3aeae69c1b51bb19ee492190324c1da705e61a81') version('0.12.5', sha256='67546963cb2a519b1a4aa43d132ef754360268e5d551b43dd1716903d99812f0') version('0.12.4', sha256='a33d636d1870c9e1127631185d89b0105a49f827d6aacd44ad9d8f151f331d8b') @@ -28,7 +29,8 @@ class PyQuantities(PythonPackage): depends_on('python@2.7.0:2.7,3.4:3.6', type=('build', 'run'), when='@0.12.0:0.12.2') depends_on('python@2.7.0:2.7,3.4:3.7', type=('build', 'run'), when='@0.12.3') depends_on('python@2.7.0:2.7,3.4:3.8', type=('build', 'run'), when='@0.12.4:0.12.5') - depends_on('python@3.7:3.10', type=('build', 'run'), when='@0.13:') + depends_on('python@3.7:3.10', type=('build', 'run'), when='@0.13.0:0.13.1') + depends_on('python@3.8:3.11', type=('build', 'run'), when='@0.14:') # pip silently replaces distutils with setuptools depends_on('py-setuptools', type='build') @@ -38,4 +40,5 @@ class PyQuantities(PythonPackage): depends_on('py-numpy@1.8.2:1.14', type=('build', 'run'), when='@0.12.2') depends_on('py-numpy@1.8.2:1.16', type=('build', 'run'), when='@0.12.3') depends_on('py-numpy@1.8.2:1.17', type=('build', 'run'), when='@0.12.4:0.12') - depends_on('py-numpy@1.16:', type=('build', 'run'), when='@0.13.0:') + depends_on('py-numpy@1.16:', type=('build', 'run'), when='@0.13.0:0.13.1') + depends_on('py-numpy@1.19:', type=('build', 'run'), when='@0.14:') -- GitLab