Revert "dev-python/fsspec: bump to 0.8.4"

Didn't mean to push this. There's a test failure reported
upstream with no activity.

This reverts commit bbae9b7ed1.

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2020-12-06 18:32:39 +00:00
parent bbae9b7ed1
commit 41ae07e8d4
2 changed files with 0 additions and 47 deletions

View File

@@ -1,2 +1 @@
DIST filesystem_spec-0.8.2.tar.gz 238399 BLAKE2B f64f153dd303bd3ec44e5010507704b5cbb50a89ad4a7a2e50b38b139219896be543bcff0fe0a99e06f015450f4b0334a641fabeeeb23583b14665ef8f089159 SHA512 e30badc56871ef20cf4b2ce0f6353b4125632d9e253f68d4b08535c9e1ac5fe428745315cee89a9536bfd1b308a28cc65fff555a7b9d9511225357bf790b9aac
DIST filesystem_spec-0.8.4.tar.gz 245482 BLAKE2B 1029351fbf167ca4f6419cf9017f80e569a4e08f46b4726da376fd0b39c5d4180444fac017cf080119aea46cdddda17572edc69b3ffd4e9737573176ae7a8522 SHA512 11a565f743eb09467bf727a11e79c58a0191bb9ba1d3d216181e3b556f5a1108d9461fd7e7d01fa56d570c27de6829c72f2e340493e22669b46300da1751e8f1

View File

@@ -1,46 +0,0 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
MY_P=filesystem_spec-${PV}
DESCRIPTION="A specification that python filesystems should adhere to"
HOMEPAGE="https://github.com/intake/filesystem_spec/
https://pypi.org/project/fsspec/"
SRC_URI="
https://github.com/intake/filesystem_spec/archive/${PV}.tar.gz
-> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="
dev-python/versioneer[${PYTHON_USEDEP}]
test? (
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-vcs/git
)"
distutils_enable_tests pytest
src_test() {
git config --global user.email "you@example.com" || die
git config --global user.name "Your Name" || die
distutils-r1_src_test
}
python_test() {
# sftp and smb require server started via docker
pytest -vv \
--ignore fsspec/implementations/tests/test_sftp.py \
--ignore fsspec/implementations/tests/test_smb.py ||
die "Tests failed with ${EPYTHON}"
}