summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-09-27 01:24:05 +0200
committerGitHub <noreply@github.com>2021-09-27 01:24:05 +0200
commite90534d45e7d405bf68e4e52b308e938a800364a (patch)
tree7fac41d16e725b43f3307cada6d80e9c9ef61e65 /var
parentcaa33b7b05cac7dba113860937a15bc2ec01e3ac (diff)
downloadspack-e90534d45e7d405bf68e4e52b308e938a800364a.tar.gz
spack-e90534d45e7d405bf68e4e52b308e938a800364a.tar.bz2
spack-e90534d45e7d405bf68e4e52b308e938a800364a.tar.xz
spack-e90534d45e7d405bf68e4e52b308e938a800364a.zip
py-python-gitlab: add 2.10.1 (#26229)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-python-gitlab/package.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-gitlab/package.py b/var/spack/repos/builtin/packages/py-python-gitlab/package.py
index 42b41db0d5..b99f8f2dd2 100644
--- a/var/spack/repos/builtin/packages/py-python-gitlab/package.py
+++ b/var/spack/repos/builtin/packages/py-python-gitlab/package.py
@@ -12,13 +12,18 @@ class PyPythonGitlab(PythonPackage):
homepage = "https://github.com/gpocentek/python-gitlab"
pypi = "python-gitlab/python-gitlab-0.19.tar.gz"
+ version('2.10.1', sha256='7afa7d7c062fa62c173190452265a30feefb844428efc58ea5244f3b9fc0d40f')
version('1.8.0', sha256='a6b03bc53f6e2e22b88d5ff9772b1bb360570ec82752f1def3d6eb60cda093e7')
version('0.19', sha256='88b65591db7a10a0d9979797e4e654a113e2b93b3a559309f6092b27ab93934a')
version('0.18', sha256='d60d67c82fedd8c3e4f0bb8b5241bf2df32307c98fdf2f02a94850e21db2d804')
version('0.17', sha256='f79337cd8b2343195b7ac0909e0483624d4235cca78fc76196a0ee4e109c9a70')
version('0.16', sha256='2c50dc0bd3ed7c6b1edb6e556b0f0109493ae9dfa46e3bffcf3e5e67228d7d53')
+ depends_on('python@3.6:', when='@2.0.0:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
- depends_on('py-six', type=('build', 'run'))
+ depends_on('py-requests-toolbelt@0.9.1:', when='@2.6.0:', type=('build', 'run'))
+ depends_on('py-requests@2.25.0:', when='@2.10.1:', type=('build', 'run'))
+ depends_on('py-requests@2.22.0:', when='@2.0.0:', type=('build', 'run'))
+ depends_on('py-requests@2.4.2:', when='@1.4.0:', type=('build', 'run'))
depends_on('py-requests@1.0:', type=('build', 'run'))
- depends_on('py-requests@2.4.2:', type=('build', 'run'), when='@1.4.0:')
+ depends_on('py-six', when='@:1', type=('build', 'run'))