[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/, sci-libs/datasets/

2024-02-21 Thread Alfredo Tupone
commit: 7938c21e268aff71e1d091dfbce1bfba8bde8308
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Wed Feb 21 21:07:04 2024 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Feb 21 21:07:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7938c21e

sci-libs/datasets: drop test that require network

Closes: https://bugs.gentoo.org/925171
Signed-off-by: Alfredo Tupone  gentoo.org>

 sci-libs/datasets/datasets-2.16.0.ebuild   |  14 ++
 .../datasets/files/datasets-2.16.0-tests.patch | 160 +
 2 files changed, 116 insertions(+), 58 deletions(-)

diff --git a/sci-libs/datasets/datasets-2.16.0.ebuild 
b/sci-libs/datasets/datasets-2.16.0.ebuild
index 0325b5ae63d6..a34fcaa2f89c 100644
--- a/sci-libs/datasets/datasets-2.16.0.ebuild
+++ b/sci-libs/datasets/datasets-2.16.0.ebuild
@@ -66,4 +66,18 @@ src_prepare() {
sed -i -e \
"/pyarrow_hotfix/d" \
src/datasets/features/features.py || die
+   sed -i \
+   -e "s:pytest.mark.integration:pytest.mark.skip():g" \
+   tests/test_arrow_dataset.py \
+   tests/test_fingerprint.py \
+   tests/test_hf_gcp.py \
+   tests/test_inspect.py \
+   tests/test_iterable_dataset.py \
+   tests/test_iterable_dataset.py \
+   tests/test_load.py \
+   tests/test_offline_util.py \
+   tests/test_streaming_download_manager.py \
+   tests/commands/test_test.py \
+   tests/packaged_modules/test_cache.py \
+   die
 }

diff --git a/sci-libs/datasets/files/datasets-2.16.0-tests.patch 
b/sci-libs/datasets/files/datasets-2.16.0-tests.patch
index 6b2845bce168..8cb89e824b3b 100644
--- a/sci-libs/datasets/files/datasets-2.16.0-tests.patch
+++ b/sci-libs/datasets/files/datasets-2.16.0-tests.patch
@@ -10,51 +10,72 @@
  ],
 --- a/tests/test_load.py   2024-02-20 22:12:13.699209107 +0100
 +++ b/tests/test_load.py   2024-02-20 22:13:10.862626708 +0100
-@@ -386,21 +386,6 @@
+@@ -386,6 +386,7 @@
  hf_modules_cache=self.hf_modules_cache,
  )
  
--def test_HubDatasetModuleFactoryWithScript_dont_trust_remote_code(self):
--# "squad" has a dataset script
--factory = HubDatasetModuleFactoryWithScript(
--"squad", download_config=self.download_config, 
dynamic_modules_path=self.dynamic_modules_path
--)
--with patch.object(config, "HF_DATASETS_TRUST_REMOTE_CODE", None):  # 
this will be the default soon
--self.assertRaises(ValueError, factory.get_module)
--factory = HubDatasetModuleFactoryWithScript(
--"squad",
--download_config=self.download_config,
--dynamic_modules_path=self.dynamic_modules_path,
--trust_remote_code=False,
--)
--self.assertRaises(ValueError, factory.get_module)
--
++@pytest.mark.skip(reason="")
+ def test_HubDatasetModuleFactoryWithScript_dont_trust_remote_code(self):
+ # "squad" has a dataset script
+ factory = HubDatasetModuleFactoryWithScript(
+@@ -402,6 +402,7 @@
+ )
+ self.assertRaises(ValueError, factory.get_module)
+ 
++@pytest.mark.skip()
  def test_HubDatasetModuleFactoryWithScript_with_github_dataset(self):
  # "wmt_t2t" has additional imports (internal)
  factory = HubDatasetModuleFactoryWithScript(
-@@ -1235,12 +1235,6 @@
- 
- 
- @pytest.mark.integration
--def test_load_streaming_private_dataset_with_zipped_data(hf_token, 
hf_private_dataset_repo_zipped_txt_data):
--ds = load_dataset(hf_private_dataset_repo_zipped_txt_data, 
streaming=True, token=hf_token)
--assert next(iter(ds)) is not None
--
--
--@pytest.mark.integration
- def test_load_dataset_config_kwargs_passed_as_arguments():
- ds_default = load_dataset(SAMPLE_DATASET_IDENTIFIER4)
- ds_custom = load_dataset(SAMPLE_DATASET_IDENTIFIER4, drop_metadata=True)
+@@ -411,6 +412,7 @@
+ assert importlib.import_module(module_factory_result.module_path) is 
not None
+ assert 
module_factory_result.builder_kwargs["base_path"].startswith(config.HF_ENDPOINT)
+ 
++@pytest.mark.skip()
+ def test_GithubMetricModuleFactory_with_internal_import(self):
+ # "squad_v2" requires additional imports (internal)
+ factory = GithubMetricModuleFactory(
+@@ -419,6 +421,7 @@
+ module_factory_result = factory.get_module()
+ assert importlib.import_module(module_factory_result.module_path) is 
not None
+ 
++@pytest.mark.skip()
+ @pytest.mark.filterwarnings("ignore:GithubMetricModuleFactory is 
deprecated:FutureWarning")
+ def test_GithubMetricModuleFactory_with_external_import(self):
+ # "bleu" requires additional imports (external from github)
+@@ -1032,6 +1035,7 @@
+ datasets.load_dataset_builder(SAMPLE_DATASET_TWO_CONFIG_IN_METADATA, 
"non-existing-config")
+ 
+ 
++@p

[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/

2024-02-20 Thread Alfredo Tupone
commit: 7f972518eb4e40bc7f8bc670bb45015d371a9166
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Wed Feb 21 07:23:55 2024 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Feb 21 07:23:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f972518

sci-libs/datasets: missing a patch

Signed-off-by: Alfredo Tupone  gentoo.org>

 .../datasets/files/datasets-2.15.0-tests.patch | 46 ++
 1 file changed, 46 insertions(+)

diff --git a/sci-libs/datasets/files/datasets-2.15.0-tests.patch 
b/sci-libs/datasets/files/datasets-2.15.0-tests.patch
new file mode 100644
index ..64d8dcfdc8d8
--- /dev/null
+++ b/sci-libs/datasets/files/datasets-2.15.0-tests.patch
@@ -0,0 +1,46 @@
+--- a/tests/test_arrow_dataset.py  2024-02-20 21:53:24.248470991 +0100
 b/tests/test_arrow_dataset.py  2024-02-20 21:53:29.441804737 +0100
+@@ -3978,7 +3978,6 @@
+ [
+ "relative/path",
+ "/absolute/path",
+-"s3://bucket/relative/path",
+ "hdfs://relative/path",
+ "hdfs:///absolute/path",
+ ],
+--- a/tests/test_hf_gcp.py 2024-02-20 21:55:18.821852434 +0100
 b/tests/test_hf_gcp.py 2024-02-20 21:55:46.525186394 +0100
+@@ -22,7 +22,6 @@
+ {"dataset": "wikipedia", "config_name": "20220301.it"},
+ {"dataset": "wikipedia", "config_name": "20220301.simple"},
+ {"dataset": "snli", "config_name": "plain_text"},
+-{"dataset": "eli5", "config_name": "LFQA_reddit"},
+ {"dataset": "wiki40b", "config_name": "en"},
+ {"dataset": "wiki_dpr", "config_name": "psgs_w100.nq.compressed"},
+ {"dataset": "wiki_dpr", "config_name": "psgs_w100.nq.no_index"},
+--- a/tests/test_inspect.py2024-02-20 22:01:35.148488467 +0100
 b/tests/test_inspect.py2024-02-20 22:02:14.458561571 +0100
+@@ -15,7 +15,7 @@
+ pytestmark = pytest.mark.integration
+ 
+ 
+-@pytest.mark.parametrize("path", ["paws", "csv"])
++@pytest.mark.parametrize("path", ["csv"])
+ def test_inspect_dataset(path, tmp_path):
+ inspect_dataset(path, tmp_path)
+ script_name = path + ".py"
+--- a/tests/test_load.py   2024-02-20 22:12:13.699209107 +0100
 b/tests/test_load.py   2024-02-20 22:13:10.862626708 +0100
+@@ -1235,12 +1235,6 @@
+ 
+ 
+ @pytest.mark.integration
+-def test_load_streaming_private_dataset_with_zipped_data(hf_token, 
hf_private_dataset_repo_zipped_txt_data):
+-ds = load_dataset(hf_private_dataset_repo_zipped_txt_data, 
streaming=True, token=hf_token)
+-assert next(iter(ds)) is not None
+-
+-
+-@pytest.mark.integration
+ def test_load_dataset_config_kwargs_passed_as_arguments():
+ ds_default = load_dataset(SAMPLE_DATASET_IDENTIFIER4)
+ ds_custom = load_dataset(SAMPLE_DATASET_IDENTIFIER4, drop_metadata=True)



[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/, sci-libs/datasets/

2023-12-25 Thread Alfredo Tupone
commit: 12a265407c6996b16a2f54e6ee32448fcfe74ea6
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Mon Dec 25 09:39:47 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Dec 25 09:40:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12a26540

sci-libs/datasets: 2.14.7 bump, remove old

Signed-off-by: Alfredo Tupone  gentoo.org>

 sci-libs/datasets/Manifest |   5 +-
 sci-libs/datasets/datasets-2.11.0-r2.ebuild|  52 -
 sci-libs/datasets/datasets-2.12.0.ebuild   |  53 -
 sci-libs/datasets/datasets-2.13.1.ebuild   |  59 -
 ...tasets-2.14.4.ebuild => datasets-2.14.7.ebuild} |  13 +-
 .../datasets/files/datasets-2.11.0-tests.patch | 242 -
 .../datasets/files/datasets-2.12.0-tests.patch | 242 -
 7 files changed, 11 insertions(+), 655 deletions(-)

diff --git a/sci-libs/datasets/Manifest b/sci-libs/datasets/Manifest
index ac1dc508ab82..aedfb1428ab5 100644
--- a/sci-libs/datasets/Manifest
+++ b/sci-libs/datasets/Manifest
@@ -1,4 +1 @@
-DIST datasets-2.11.0.gh.tar.gz 2141289 BLAKE2B 
0fb471dd6ee5de3831eb6586c4a15e67381262470b72d5ab02ee87dfc7977cb4d40e04da6507049d1e47cb8948cad11988bb7627293b48231e1cd413d2cfb885
 SHA512 
9ec2274d7978e3dde1b2f8ce78dd65bdf66742bbfee7b8672af46216aeaae3ef5c4604a8a5ea0bdee808f1c362cca9a122c16d2e9a161678148e581e4cd5c863
-DIST datasets-2.12.0.gh.tar.gz 2149274 BLAKE2B 
8f188901dfe293ac2b673f37e0d135e01a8f131adf9030ef1815ce2faa7ba0b36faf64a002cae1ced2d3ed5b7f50f43ba5cda90ab9254fd5f66bbfaed6085f3f
 SHA512 
7389a1c6ee8ff4cda39a2c3f52218aa6f4b1cd6b45f48f83bfa2191359a8999d54153120d968b3cf7e5e932f88822783578e3d859dcb20f38fb0d915d88220c9
-DIST datasets-2.13.1.gh.tar.gz 2166516 BLAKE2B 
2269434b94145837e491ec6784218f6972df94a558b9067020076fb44dd937a103e3c57dd3761bb0a4cb3c3b6248299ec2a6c3f03c5bd016daaa8957591bf7b6
 SHA512 
3d2d1aad86b6a472cd6d0e6c661d4730cc0ed1a0fff55c739fc6a0ba68a8f53ae8789029553abd713d0b30648dd020f1880b2d8110c72b5c89a320c2b24f7752
-DIST datasets-2.14.4.gh.tar.gz 2142214 BLAKE2B 
d4c98a9f29ca748c3c20f32b9a89f053cf6327f56353341ba0073d3b5561ed9aea372d2fa74cadfa8b0f2ba0f6c2e9b3181cca9724719cfe3969f36bbb893f11
 SHA512 
c3a0701dd83474f4a0d839fe4ef56cfccc9f1d45b6506d44d0f9100bc9dbc90014d16c8e0090dc13f3b2d963bd96af45281bde6e3d7af230467ec7dd26204aa3
+DIST datasets-2.14.7.gh.tar.gz 2145270 BLAKE2B 
b3196f75bd52432091052e63ccfc538072b30bead213c7ddc549724c8efedacdf6bb8934574220ee62e27a48240a769ad5e79c4e39cad92538dc6947f7f9bd2b
 SHA512 
87ecaec34670af5b4879aaa85e730fc4ba376028e7ca033a556aec9ac55156f11252dd130c12dc160d5c3d5618fa072e46c7dcc01eed9c0e2e07657b0b74

diff --git a/sci-libs/datasets/datasets-2.11.0-r2.ebuild 
b/sci-libs/datasets/datasets-2.11.0-r2.ebuild
deleted file mode 100644
index a2f4ad26e65b..
--- a/sci-libs/datasets/datasets-2.11.0-r2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_SINGLE_IMPL=1
-inherit distutils-r1
-
-DESCRIPTION="Access and share datasets for Audio, Computer Vision, and NLP 
tasks"
-HOMEPAGE="
-   https://pypi.org/project/datasets/
-"
-SRC_URI="https://github.com/huggingface/${PN}/archive/refs/tags/${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
-IUSE="test"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   sci-libs/pytorch[${PYTHON_SINGLE_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/absl-py[${PYTHON_USEDEP}]
-   dev-python/aiohttp[${PYTHON_USEDEP}]
-   dev-python/fsspec[${PYTHON_USEDEP}]
-   dev-python/multiprocess[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/pyarrow[${PYTHON_USEDEP},parquet,snappy]
-   dev-python/tqdm[${PYTHON_USEDEP}]
-   dev-python/xxhash[${PYTHON_USEDEP}]
-   dev-python/zstandard[${PYTHON_USEDEP}]
-   sci-libs/huggingface_hub[${PYTHON_USEDEP}]
-   sci-libs/scikit-learn[${PYTHON_USEDEP}]
-   ')
-"
-DEPEND="${RDEPEND}"
-BDEPEND="test? (
-   $(python_gen_cond_dep '
-   dev-python/pytest-datadir[${PYTHON_USEDEP}]
-   dev-python/decorator[${PYTHON_USEDEP}]
-   sci-libs/jiwer[${PYTHON_USEDEP}]
-   sci-libs/seqeval[${PYTHON_USEDEP}]
-   ')
-)"
-
-PATCHES=( "${FILESDIR}"/${P}-tests.patch )
-
-distutils_enable_tests pytest

diff --git a/sci-libs/datasets/datasets-2.12.0.ebuild 
b/sci-libs/datasets/datasets-2.12.0.ebuild
deleted file mode 100644
index 66b609fd2b57..
--- a/sci-libs/datasets/datasets-2.12.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..1

[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/, sci-libs/datasets/

2023-08-25 Thread Alfredo Tupone
commit: a3c14cfb38a777a44ecd9fbb195db5874c390809
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Sat Aug 26 06:27:20 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Sat Aug 26 06:27:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3c14cfb

sci-libs/datasets: add 2.14.4

Signed-off-by: Alfredo Tupone  gentoo.org>

 sci-libs/datasets/Manifest |   1 +
 sci-libs/datasets/datasets-2.14.4.ebuild   |  59 +
 .../datasets/files/datasets-2.14.4-tests.patch | 242 +
 3 files changed, 302 insertions(+)

diff --git a/sci-libs/datasets/Manifest b/sci-libs/datasets/Manifest
index 5895ad1a2004..ac1dc508ab82 100644
--- a/sci-libs/datasets/Manifest
+++ b/sci-libs/datasets/Manifest
@@ -1,3 +1,4 @@
 DIST datasets-2.11.0.gh.tar.gz 2141289 BLAKE2B 
0fb471dd6ee5de3831eb6586c4a15e67381262470b72d5ab02ee87dfc7977cb4d40e04da6507049d1e47cb8948cad11988bb7627293b48231e1cd413d2cfb885
 SHA512 
9ec2274d7978e3dde1b2f8ce78dd65bdf66742bbfee7b8672af46216aeaae3ef5c4604a8a5ea0bdee808f1c362cca9a122c16d2e9a161678148e581e4cd5c863
 DIST datasets-2.12.0.gh.tar.gz 2149274 BLAKE2B 
8f188901dfe293ac2b673f37e0d135e01a8f131adf9030ef1815ce2faa7ba0b36faf64a002cae1ced2d3ed5b7f50f43ba5cda90ab9254fd5f66bbfaed6085f3f
 SHA512 
7389a1c6ee8ff4cda39a2c3f52218aa6f4b1cd6b45f48f83bfa2191359a8999d54153120d968b3cf7e5e932f88822783578e3d859dcb20f38fb0d915d88220c9
 DIST datasets-2.13.1.gh.tar.gz 2166516 BLAKE2B 
2269434b94145837e491ec6784218f6972df94a558b9067020076fb44dd937a103e3c57dd3761bb0a4cb3c3b6248299ec2a6c3f03c5bd016daaa8957591bf7b6
 SHA512 
3d2d1aad86b6a472cd6d0e6c661d4730cc0ed1a0fff55c739fc6a0ba68a8f53ae8789029553abd713d0b30648dd020f1880b2d8110c72b5c89a320c2b24f7752
+DIST datasets-2.14.4.gh.tar.gz 2142214 BLAKE2B 
d4c98a9f29ca748c3c20f32b9a89f053cf6327f56353341ba0073d3b5561ed9aea372d2fa74cadfa8b0f2ba0f6c2e9b3181cca9724719cfe3969f36bbb893f11
 SHA512 
c3a0701dd83474f4a0d839fe4ef56cfccc9f1d45b6506d44d0f9100bc9dbc90014d16c8e0090dc13f3b2d963bd96af45281bde6e3d7af230467ec7dd26204aa3

diff --git a/sci-libs/datasets/datasets-2.14.4.ebuild 
b/sci-libs/datasets/datasets-2.14.4.ebuild
new file mode 100644
index ..08ed796e9c2d
--- /dev/null
+++ b/sci-libs/datasets/datasets-2.14.4.ebuild
@@ -0,0 +1,59 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_SINGLE_IMPL=1
+inherit distutils-r1
+
+DESCRIPTION="Access and share datasets for Audio, Computer Vision, and NLP 
tasks"
+HOMEPAGE="
+   https://pypi.org/project/datasets/
+"
+SRC_URI="https://github.com/huggingface/${PN}/archive/refs/tags/${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+IUSE="test"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   sci-libs/pytorch[${PYTHON_SINGLE_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/absl-py[${PYTHON_USEDEP}]
+   dev-python/aiohttp[${PYTHON_USEDEP}]
+   dev-python/fsspec[${PYTHON_USEDEP}]
+   dev-python/multiprocess[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/pyarrow[${PYTHON_USEDEP},parquet,snappy]
+   dev-python/tqdm[${PYTHON_USEDEP}]
+   dev-python/xxhash[${PYTHON_USEDEP}]
+   dev-python/zstandard[${PYTHON_USEDEP}]
+   sci-libs/huggingface_hub[${PYTHON_USEDEP}]
+   sci-libs/scikit-learn[${PYTHON_USEDEP}]
+   ')
+"
+DEPEND="${RDEPEND}"
+BDEPEND="test? (
+   $(python_gen_cond_dep '
+   dev-python/pytest-datadir[${PYTHON_USEDEP}]
+   dev-python/decorator[${PYTHON_USEDEP}]
+   =dev-python/sqlalchemy-1*[${PYTHON_USEDEP}]
+   sci-libs/jiwer[${PYTHON_USEDEP}]
+   sci-libs/seqeval[${PYTHON_USEDEP}]
+   ')
+)"
+
+PATCHES=( "${FILESDIR}"/${P}-tests.patch )
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+   rm tests/packaged_modules/test_spark.py || die
+   rm tests/test_upstream_hub.py || die
+}

diff --git a/sci-libs/datasets/files/datasets-2.14.4-tests.patch 
b/sci-libs/datasets/files/datasets-2.14.4-tests.patch
new file mode 100644
index ..5dd322309b20
--- /dev/null
+++ b/sci-libs/datasets/files/datasets-2.14.4-tests.patch
@@ -0,0 +1,242 @@
+--- a/tests/test_metric_common.py  2023-05-04 18:48:48.550861318 +0200
 b/tests/test_metric_common.py  2023-05-04 18:50:25.787364577 +0200
+@@ -93,6 +93,7 @@
+ INTENSIVE_CALLS_PATCHER = {}
+ metric_name = None
+ 
++@pytest.mark.skip(reason="disabling, depends on bert_score, bleurt, 
math_equivalence, coval, nltk, faiss, mauve, rouge_score, sacrebleu, sacremoses 
...")
+ @pytest.mark.filterwarnings("ignore:metric_module_factory is 
deprecated:FutureWarning")
+ @pytest.mark.filterwarnings("ignore:load_metric is 
deprecate

[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/, sci-libs/datasets/

2023-05-15 Thread Alfredo Tupone
commit: da6e3eae5a4bc7472c759444ecbd9ed79cbfa4a2
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue May 16 05:20:21 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue May 16 05:21:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da6e3eae

sci-libs/datasets: use seqeval for test

Signed-off-by: Alfredo Tupone  gentoo.org>

 .../{datasets-2.11.0-r1.ebuild => datasets-2.11.0-r2.ebuild}   |  1 +
 sci-libs/datasets/files/datasets-2.11.0-tests.patch| 10 --
 2 files changed, 1 insertion(+), 10 deletions(-)

diff --git a/sci-libs/datasets/datasets-2.11.0-r1.ebuild 
b/sci-libs/datasets/datasets-2.11.0-r2.ebuild
similarity index 97%
rename from sci-libs/datasets/datasets-2.11.0-r1.ebuild
rename to sci-libs/datasets/datasets-2.11.0-r2.ebuild
index 977bf0d698b9..a2f4ad26e65b 100644
--- a/sci-libs/datasets/datasets-2.11.0-r1.ebuild
+++ b/sci-libs/datasets/datasets-2.11.0-r2.ebuild
@@ -43,6 +43,7 @@ BDEPEND="test? (
dev-python/pytest-datadir[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]
sci-libs/jiwer[${PYTHON_USEDEP}]
+   sci-libs/seqeval[${PYTHON_USEDEP}]
')
 )"
 

diff --git a/sci-libs/datasets/files/datasets-2.11.0-tests.patch 
b/sci-libs/datasets/files/datasets-2.11.0-tests.patch
index 0babe8b23d58..e105c01bc63b 100644
--- a/sci-libs/datasets/files/datasets-2.11.0-tests.patch
+++ b/sci-libs/datasets/files/datasets-2.11.0-tests.patch
@@ -123,16 +123,6 @@
  def test_dataset_with_audio_feature_map_undecoded(shared_datadir):
  audio_path = str(shared_datadir / "test_audio_44100.wav")
  data = {"audio": [audio_path]}
 a/tests/test_metric_common.py  2023-05-06 13:20:24.496197629 +0200
-+++ b/tests/test_metric_common.py  2023-05-06 13:21:09.916732417 +0200
-@@ -210,6 +210,7 @@
- yield
- 
- 
-+@pytest.mark.skip(reason="require seqeval")
- def test_seqeval_raises_when_incorrect_scheme():
- metric = load_metric(os.path.join("metrics", "seqeval"))
- wrong_scheme = "ERROR"
 --- a/tests/packaged_modules/test_audiofolder.py   2023-05-06 
14:00:39.560876163 +0200
 +++ b/tests/packaged_modules/test_audiofolder.py   2023-05-06 
14:01:26.005212423 +0200
 @@ -1,10 +1,8 @@



[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/

2023-05-15 Thread Alfredo Tupone
commit: 48af9c1392f58d79a196a26287bc4bb362317f18
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Mon May 15 21:30:47 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon May 15 21:31:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48af9c13

sci-libs/datasets: ignore some tests not working on sandbox

Signed-off-by: Alfredo Tupone  gentoo.org>

 .../datasets/files/datasets-2.11.0-tests.patch | 82 ++
 1 file changed, 82 insertions(+)

diff --git a/sci-libs/datasets/files/datasets-2.11.0-tests.patch 
b/sci-libs/datasets/files/datasets-2.11.0-tests.patch
index 0bbf200acbd0..0babe8b23d58 100644
--- a/sci-libs/datasets/files/datasets-2.11.0-tests.patch
+++ b/sci-libs/datasets/files/datasets-2.11.0-tests.patch
@@ -168,3 +168,85 @@
  def test_task_automatic_speech_recognition(self):
  # Include a dummy extra column `dummy` to test we drop it correctly
  features_before_cast = Features(
+--- a/tests/test_streaming_download_manager.py 2023-05-15 23:06:59.146379973 
+0200
 b/tests/test_streaming_download_manager.py 2023-05-15 23:11:32.441363757 
+0200
+@@ -217,6 +217,7 @@
+ assert output_path == 
_readd_double_slash_removed_by_path(Path(expected_path).as_posix())
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, exists",
+ [
+@@ -299,6 +300,7 @@
+ assert list(f) == TEST_URL_CONTENT.splitlines(keepends=True)
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, expected_paths",
+ [
+@@ -328,6 +330,7 @@
+ xlistdir(root_url, use_auth_token=hf_token)
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, isdir",
+ [
+@@ -355,6 +358,7 @@
+ xisdir(root_url, use_auth_token=hf_token)
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, isfile",
+ [
+@@ -378,6 +382,7 @@
+ assert xisfile(root_url + "qwertyuiop", use_auth_token=hf_token) is False
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, size",
+ [
+@@ -402,6 +407,7 @@
+ xgetsize(root_url + "qwertyuiop", use_auth_token=hf_token)
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, expected_paths",
+ [
+@@ -444,6 +450,7 @@
+ assert len(xglob("zip://qwertyuiop/*::" + root_url, 
use_auth_token=hf_token)) == 0
+ 
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, expected_outputs",
+ [
+@@ -533,6 +540,7 @@
+ def test_xpath_as_posix(self, input_path, expected_path):
+ assert xPath(input_path).as_posix() == expected_path
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, exists",
+ [
+@@ -548,6 +556,7 @@
+ (tmp_path / "file.txt").touch()
+ assert xexists(input_path) is exists
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, pattern, expected_paths",
+ [
+@@ -586,6 +595,7 @@
+ output_paths = sorted(xPath(input_path).glob(pattern))
+ assert output_paths == expected_paths
+ 
++@pytest.mark.skip(reason="not working in sandbox")
+ @pytest.mark.parametrize(
+ "input_path, pattern, expected_paths",
+ [



[gentoo-commits] repo/gentoo:master commit in: sci-libs/datasets/files/

2023-05-08 Thread Alfredo Tupone
commit: e2df99959623331aa3710cc48992e783cb9f5985
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Mon May  8 19:27:32 2023 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon May  8 19:31:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2df9995

sci-libs/datasets: fix librosa import

Closes: https://bugs.gentoo.org/905938
Signed-off-by: Alfredo Tupone  gentoo.org>

 .../datasets/files/datasets-2.11.0-tests.patch | 28 --
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/sci-libs/datasets/files/datasets-2.11.0-tests.patch 
b/sci-libs/datasets/files/datasets-2.11.0-tests.patch
index 01e5d9c70e7b..0bbf200acbd0 100644
--- a/sci-libs/datasets/files/datasets-2.11.0-tests.patch
+++ b/sci-libs/datasets/files/datasets-2.11.0-tests.patch
@@ -59,7 +59,7 @@
  @pytest.mark.parametrize(
  "build_example",
  [
-@@ -82,6 +82,7 @@
+@@ -81,6 +82,7 @@
  assert decoded_example.keys() == {"path", "array", "sampling_rate"}
  
  
@@ -75,7 +75,7 @@
  @pytest.mark.parametrize("sampling_rate", [16_000, 48_000])
  def test_audio_decode_example_pcm(shared_datadir, sampling_rate):
  audio_path = str(shared_datadir / "test_audio_16000.pcm")
-@@ -416,6 +417,7 @@
+@@ -414,6 +417,7 @@
  assert column[0]["sampling_rate"] == 16000
  
  
@@ -83,7 +83,7 @@
  @pytest.mark.parametrize(
  "build_data",
  [
-@@ -440,6 +442,7 @@
+@@ -438,6 +442,7 @@
  assert item["audio"].keys() == {"path", "array", "sampling_rate"}
  
  
@@ -91,7 +91,7 @@
  def test_dataset_concatenate_audio_features(shared_datadir):
  # we use a different data structure between 1 and 2 to make sure they are 
compatible with each other
  audio_path = str(shared_datadir / "test_audio_44100.wav")
-@@ -453,6 +456,7 @@
+@@ -451,6 +456,7 @@
  assert concatenated_dataset[1]["audio"]["array"].shape == 
dset2[0]["audio"]["array"].shape
  
  
@@ -99,7 +99,7 @@
  def test_dataset_concatenate_nested_audio_features(shared_datadir):
  # we use a different data structure between 1 and 2 to make sure they are 
compatible with each other
  audio_path = str(shared_datadir / "test_audio_44100.wav")
-@@ -616,6 +616,7 @@
+@@ -610,6 +616,7 @@
  assert isinstance(ds, Dataset)
  
  
@@ -107,7 +107,7 @@
  def test_dataset_with_audio_feature_undecoded(shared_datadir):
  audio_path = str(shared_datadir / "test_audio_44100.wav")
  data = {"audio": [audio_path]}
-@@ -633,6 +634,7 @@
+@@ -627,6 +634,7 @@
  assert column[0] == {"path": audio_path, "bytes": None}
  
  
@@ -115,7 +115,7 @@
  def test_formatted_dataset_with_audio_feature_undecoded(shared_datadir):
  audio_path = str(shared_datadir / "test_audio_44100.wav")
  data = {"audio": [audio_path]}
-@@ -664,6 +666,7 @@
+@@ -658,6 +666,7 @@
  assert column[0] == {"path": audio_path, "bytes": None}
  
  
@@ -135,24 +135,26 @@
  wrong_scheme = "ERROR"
 --- a/tests/packaged_modules/test_audiofolder.py   2023-05-06 
14:00:39.560876163 +0200
 +++ b/tests/packaged_modules/test_audiofolder.py   2023-05-06 
14:01:26.005212423 +0200
-@@ -4,7 +4,6 @@
- import librosa
+@@ -1,10 +1,8 @@
+ import shutil
+ import textwrap
+ 
+-import librosa
  import numpy as np
  import pytest
 -import soundfile as sf
  
  from datasets import Audio, ClassLabel, Features, Value
  from datasets.data_files import DataFilesDict, get_data_patterns_locally
-@@ -191,9 +190,11 @@
- assert len(data_files_with_two_splits_and_metadata["test"]) == 2
+@@ -192,8 +190,11 @@
  return data_files_with_two_splits_and_metadata
  
--
+ 
 +@pytest.mark.skip(reason="require soundfile")
  @pytest.fixture
  def data_files_with_zip_archives(tmp_path, audio_file):
 +import soundfile as sf
-+
++import librosa
  data_dir = tmp_path / "audiofolder_data_dir_with_zip_archives"
  data_dir.mkdir(parents=True, exist_ok=True)
  archive_dir = data_dir / "archive"