Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lmfit/
Date: Sun, 26 Sep 2021 10:18:59
Message-Id: 1632651213.70531c9453aaac4a46450ba899b30b56d14b8183.pacho@gentoo
1 commit: 70531c9453aaac4a46450ba899b30b56d14b8183
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 26 10:13:33 2021 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 26 10:13:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70531c94
7
8 dev-python/lmfit: Support python 3.10
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-python/lmfit/lmfit-1.0.2.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-python/lmfit/lmfit-1.0.2.ebuild b/dev-python/lmfit/lmfit-1.0.2.ebuild
17 index 3e93970d975..33dc0c4bf79 100644
18 --- a/dev-python/lmfit/lmfit-1.0.2.ebuild
19 +++ b/dev-python/lmfit/lmfit-1.0.2.ebuild
20 @@ -1,8 +1,9 @@
21 # Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=7
25 -PYTHON_COMPAT=( python3_{7..9} )
26 +EAPI=8
27 +PYTHON_COMPAT=( python3_{7..10} )
28 +
29 inherit distutils-r1
30
31 DESCRIPTION="Non-Linear Least-Squares Minimization and Curve-Fitting for Python"