summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Dorier <mdorier@anl.gov>2021-12-31 18:58:57 +0100
committerGitHub <noreply@github.com>2021-12-31 10:58:57 -0700
commitfc9bfe5317c763459d802222684b0909bb348614 (patch)
tree054404e5097ccc0585d7a9f76e8b7a598ae38693
parent4e80b188517c049763b425121bc123b73443bd3d (diff)
downloadspack-fc9bfe5317c763459d802222684b0909bb348614.tar.gz
spack-fc9bfe5317c763459d802222684b0909bb348614.tar.bz2
spack-fc9bfe5317c763459d802222684b0909bb348614.tar.xz
spack-fc9bfe5317c763459d802222684b0909bb348614.zip
[py-async-timeout] new versions (#28195)
* [py-async-timeout] new versions * [py-async-timeout] corrected dependency * [py-async-timeout] more fixes to dependencies
-rw-r--r--var/spack/repos/builtin/packages/py-async-timeout/package.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-async-timeout/package.py b/var/spack/repos/builtin/packages/py-async-timeout/package.py
index 31d4deb268..3ddac4293d 100644
--- a/var/spack/repos/builtin/packages/py-async-timeout/package.py
+++ b/var/spack/repos/builtin/packages/py-async-timeout/package.py
@@ -10,7 +10,13 @@ class PyAsyncTimeout(PythonPackage):
homepage = "https://github.com/aio-libs/async-timeout"
url = "https://github.com/aio-libs/async-timeout/archive/v3.0.1.tar.gz"
+ version('4.0.2', sha256='2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15')
+ version('4.0.1', sha256='b930cb161a39042f9222f6efb7301399c87eeab394727ec5437924a36d6eef51')
+ version('4.0.0', sha256='2116e8c7412929579e1d4e1b3c5fdfe3835c2002a0189451d183148239c05a17')
version('3.0.1', sha256='d0a7a927ed6b922835e1b014dfcaa9982caccbb25131320582cc660af7c93949')
- depends_on('py-setuptools', type='build')
- depends_on('python@3.5.3:', type=('build', 'run'))
+ depends_on('py-setuptools@45:', type='build')
+ depends_on('python@3.5.3:', type=('build', 'run'), when='@3.0.1:')
+ depends_on('python@3.6:', type=('build', 'run'), when='@4.0.1:')
+ depends_on('py-typing-extensions@3.6.5:', type=('build', 'run'), when='@4.0.1')
+ depends_on('py-typing-extensions@3.6.5:', type=('build', 'run'), when='@4.0.2: ^python@:3.7')