summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2021-11-11 17:43:50 +0100
committerGitHub <noreply@github.com>2021-11-11 09:43:50 -0700
commit00c84aa54faa02a34114bd279fdffcc986b78797 (patch)
tree10ea4a4cee8772039b97f7985b9ed8a470a37acc /var
parente32dd27eb784d17328c87a05353de094c4030f69 (diff)
downloadspack-00c84aa54faa02a34114bd279fdffcc986b78797.tar.gz
spack-00c84aa54faa02a34114bd279fdffcc986b78797.tar.bz2
spack-00c84aa54faa02a34114bd279fdffcc986b78797.tar.xz
spack-00c84aa54faa02a34114bd279fdffcc986b78797.zip
New version: py-oauthlib 3.1.1 (#27356)
* New version: py-oauthlib 3.1.1 * Update var/spack/repos/builtin/packages/py-oauthlib/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-oauthlib/package.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-oauthlib/package.py b/var/spack/repos/builtin/packages/py-oauthlib/package.py
index be59718198..9fe6798ae0 100644
--- a/var/spack/repos/builtin/packages/py-oauthlib/package.py
+++ b/var/spack/repos/builtin/packages/py-oauthlib/package.py
@@ -15,14 +15,19 @@ class PyOauthlib(PythonPackage):
homepage = "https://github.com/oauthlib/oauthlib"
pypi = "oauthlib/oauthlib-3.1.0.tar.gz"
+ version('3.1.1', sha256='8f0215fcc533dd8dd1bee6f4c412d4f0cd7297307d43ac61666389e3bc3198a3')
version('3.1.0', sha256='bee41cc35fcca6e988463cacc3bcb8a96224f470ca547e697b604cc697b2f889')
version('3.0.1', sha256='0ce32c5d989a1827e3f1148f98b9085ed2370fc939bf524c9c851d8714797298')
version('2.0.2', sha256='b3b9b47f2a263fe249b5b48c4e25a5bce882ff20a0ac34d553ce43cff55b53ac')
variant('extras', default=True, description='Build with pyjwt, blinker, cryptography')
- depends_on('py-setuptools', type='build')
- depends_on('py-pyjwt@1.0.0:', type=('build', 'run'), when='+extras')
- depends_on('py-blinker', type=('build', 'run'), when='+extras')
- depends_on('py-cryptography', type=('build', 'run'), when='+extras')
- depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pyjwt@1.0.0:', type=('build', 'run'), when='+extras')
+ depends_on('py-pyjwt@2.0.0:2', type=('build', 'run'), when='+extras @3.1.1:')
+ depends_on('py-blinker', type=('build', 'run'), when='+extras')
+ depends_on('py-blinker@1.4:', type=('build', 'run'), when='+extras @3.1.1:')
+ depends_on('py-cryptography', type=('build', 'run'), when='+extras')
+ depends_on('py-cryptography@3.0.0:3', type=('build', 'run'), when='+extras @3.1.1:')
+ depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('python@3.6:', type=('build', 'run'), when='@3.1.1:')