diff options
author | Manuela Kuhn <36827019+manuelakuhn@users.noreply.github.com> | 2021-11-23 19:11:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 11:11:12 -0700 |
commit | 2d20e557df70653966524b056a8e11e63f8ead47 (patch) | |
tree | 05c2b73853ae3db6338c09a212daf3bf960deb40 | |
parent | 14607b352c6d8848666a071b655ea5feb36a73ea (diff) | |
download | spack-2d20e557df70653966524b056a8e11e63f8ead47.tar.gz spack-2d20e557df70653966524b056a8e11e63f8ead47.tar.bz2 spack-2d20e557df70653966524b056a8e11e63f8ead47.tar.xz spack-2d20e557df70653966524b056a8e11e63f8ead47.zip |
py-flask: add 2.0.2 (#27615)
-rw-r--r-- | var/spack/repos/builtin/packages/py-flask/package.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-flask/package.py b/var/spack/repos/builtin/packages/py-flask/package.py index 53f5c6d3be..d56bacef1e 100644 --- a/var/spack/repos/builtin/packages/py-flask/package.py +++ b/var/spack/repos/builtin/packages/py-flask/package.py @@ -12,6 +12,7 @@ class PyFlask(PythonPackage): homepage = "https://palletsprojects.com/p/flask/" pypi = "Flask/Flask-1.1.1.tar.gz" + version('2.0.2', sha256='7b2fb8e934ddd50731893bdcdb00fc8c0315916f9fcd50d22c7cc1a95ab634e2') version('1.1.2', sha256='4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060') version('1.1.1', sha256='13f9f196f330c7c2c5d7a5cf91af894110ca0215ac051b5844701f2bfd934d52') version('0.12.4', sha256='2ea22336f6d388b4b242bc3abf8a01244a8aa3e236e7407469ef78c16ba355dd') @@ -19,9 +20,15 @@ class PyFlask(PythonPackage): version('0.12.1', sha256='9dce4b6bfbb5b062181d3f7da8f727ff70c1156cbb4024351eafd426deb5fb88') version('0.11.1', sha256='b4713f2bfb9ebc2966b8a49903ae0d3984781d5c878591cf2f7b484d28756b0e') - depends_on('python@2.7:2.8,3.5:', type=('build', 'run')) - depends_on('py-setuptools', type=('build', 'run')) - depends_on('py-werkzeug@0.15:', type=('build', 'run')) - depends_on('py-jinja2@2.10.1:', type=('build', 'run')) + depends_on('python@3.6:', when='@2:', type=('build', 'run')) + depends_on('python@2.7:2,3.5:', type=('build', 'run')) + depends_on('py-setuptools', type=('build', 'run')) + + depends_on('py-werkzeug@2:', when='@2:', type=('build', 'run')) + depends_on('py-werkzeug@0.15:', type=('build', 'run')) + depends_on('py-jinja2@3:', when='@2:', type=('build', 'run')) + depends_on('py-jinja2@2.10.1:', type=('build', 'run')) + depends_on('py-itsdangerous@2:', when='@2:', type=('build', 'run')) depends_on('py-itsdangerous@0.24:', type=('build', 'run')) - depends_on('py-click@5.1:', type=('build', 'run')) + depends_on('py-click@7.1.2:', when='@2:', type=('build', 'run')) + depends_on('py-click@5.1:', type=('build', 'run')) |