[py-fsspec] added http variant (#23404)

* [py-fsspec] added http variant

* [py-fsspec] added conflict to enforce newer version for +http
This commit is contained in:
Jen Herting 2021-05-03 16:42:40 -04:00 committed by GitHub
parent 435ecce2f5
commit c4c090ab65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,12 @@ class PyFsspec(PythonPackage):
version('0.7.3', sha256='1b540552c93b47e83c568e87507d6e02993e6d1b30bc7285f2336c81c5014103')
version('0.4.4', sha256='97697a46e8bf8be34461c2520d6fc4bfca0ed749b22bb2b7c21939fd450a7d63')
variant('http', default=False, description='HTTPFileSystem support (Requires version 0.8.1+)')
conflicts('+http', when='@:0.8.0', msg='Only available in 0.8.1+')
depends_on('python@3.5:', type=('build', 'run'))
depends_on('python@3.6:', type=('build', 'run'), when='@0.6.3:')
depends_on('py-setuptools', type='build')
depends_on('py-requests', type=('build', 'run'), when='+http')
depends_on('py-aiohttp', type=('build', 'run'), when='+http')