mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
dev-libs/fastText: enable py3.13
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_OPTIONAL=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
@@ -33,6 +33,7 @@ BDEPEND="
|
||||
DOCS=( {CODE_OF_CONDUCT,CONTRIBUTING,README}.md python/{README.rst,doc} docs )
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-gcc13.patch"
|
||||
"${FILESDIR}/${P}-numpy2.patch"
|
||||
"${FILESDIR}/${P}-pep517.patch"
|
||||
)
|
||||
|
||||
|
||||
30
dev-libs/fastText/files/fastText-0.9.2-numpy2.patch
Normal file
30
dev-libs/fastText/files/fastText-0.9.2-numpy2.patch
Normal file
@@ -0,0 +1,30 @@
|
||||
https://numpy.org/devdocs/numpy_2_0_migration_guide.html#adapting-to-changes-in-the-copy-keyword
|
||||
--- a/python/fasttext_module/fasttext/FastText.py
|
||||
+++ b/python/fasttext_module/fasttext/FastText.py
|
||||
@@ -43,7 +43,7 @@ class _Meter(object):
|
||||
else:
|
||||
y_scores, y_true = ([], ())
|
||||
|
||||
- return np.array(y_scores, copy=False), np.array(y_true, copy=False)
|
||||
+ return np.asarray(y_scores), np.asarray(y_true)
|
||||
|
||||
def precision_recall_curve(self, label=None):
|
||||
"""Return precision/recall curve"""
|
||||
@@ -58,7 +58,7 @@ class _Meter(object):
|
||||
else:
|
||||
precision, recall = ([], ())
|
||||
|
||||
- return np.array(precision, copy=False), np.array(recall, copy=False)
|
||||
+ return np.asarray(precision), np.asarray(recall)
|
||||
|
||||
def precision_at_recall(self, recall, label=None):
|
||||
"""Return precision for a given recall"""
|
||||
@@ -229,7 +229,7 @@ class _FastText(object):
|
||||
else:
|
||||
probs, labels = ([], ())
|
||||
|
||||
- return labels, np.array(probs, copy=False)
|
||||
+ return labels, np.asarray(probs)
|
||||
|
||||
def get_input_matrix(self):
|
||||
"""
|
||||
@@ -1,7 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<maintainer type="person">
|
||||
<email>pastalian46@gmail.com</email>
|
||||
<name>Takuya Wakazono</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">facebookresearch/fastText</remote-id>
|
||||
<remote-id type="pypi">fasttext</remote-id>
|
||||
|
||||
Reference in New Issue
Block a user