summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJen Herting <jen@herting.cc>2021-02-10 16:31:02 -0500
committerGitHub <noreply@github.com>2021-02-10 21:31:02 +0000
commit5828a2cd31364e8850e30c6b6e635df39661ac0b (patch)
tree2485981a94cea8e0973cfdfbb3d0ca6165a172aa /var
parente15a3438a8311d1be596a949f08cf30584c57d48 (diff)
downloadspack-5828a2cd31364e8850e30c6b6e635df39661ac0b.tar.gz
spack-5828a2cd31364e8850e30c6b6e635df39661ac0b.tar.bz2
spack-5828a2cd31364e8850e30c6b6e635df39661ac0b.tar.xz
spack-5828a2cd31364e8850e30c6b6e635df39661ac0b.zip
[py-chalice] py-typing causes issues with python >= 3.5 (#21202)
* [py-chalice] py-typing causes issues with python >= 3.5 * [py-chalice] changed upperbound on typing
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-chalice/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-chalice/package.py b/var/spack/repos/builtin/packages/py-chalice/package.py
index b04a43029c..527f6cd9a1 100644
--- a/var/spack/repos/builtin/packages/py-chalice/package.py
+++ b/var/spack/repos/builtin/packages/py-chalice/package.py
@@ -27,7 +27,7 @@ class PyChalice(PythonPackage):
depends_on('py-setuptools', type='build')
depends_on('py-click@7.0:8.0', type=('build', 'run'))
depends_on('py-botocore@1.12.86:2.0.0', type=('build', 'run'))
- depends_on('py-typing@3.6.4', type=('build', 'run'))
+ depends_on('py-typing@3.6.4', type=('build', 'run'), when='^python@:3.6.999')
depends_on('py-mypy-extensions@0.4.3', type=('build', 'run'))
depends_on('py-six@1.10.0:2.0.0', type=('build', 'run'))
depends_on('py-pip@9:20.0', type=('build', 'run'))