Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/virtualenv/
Date: Thu, 12 May 2022 10:40:51
Message-Id: 1652352041.f73582e51cb87815857620f4c729a7a8deb22757.mgorny@gentoo
1 commit: f73582e51cb87815857620f4c729a7a8deb22757
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 12 10:07:57 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 12 10:40:41 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f73582e5
7
8 dev-python/virtualenv: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/virtualenv/virtualenv-20.14.1-r1.ebuild | 7 ++++++-
13 1 file changed, 6 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-python/virtualenv/virtualenv-20.14.1-r1.ebuild b/dev-python/virtualenv/virtualenv-20.14.1-r1.ebuild
16 index aa36bbcb8c3e..03c4a89ffb0e 100644
17 --- a/dev-python/virtualenv/virtualenv-20.14.1-r1.ebuild
18 +++ b/dev-python/virtualenv/virtualenv-20.14.1-r1.ebuild
19 @@ -4,7 +4,7 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
24 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
25
26 inherit distutils-r1
27
28 @@ -87,6 +87,11 @@ python_test() {
29 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]'
30 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]'
31 )
32 + [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
33 + # TODO
34 + tests/unit/discovery/py_info/test_py_info.py::test_py_info_setuptools
35 + tests/unit/discovery/py_info/test_py_info.py::test_custom_venv_install_scheme_is_prefered
36 + )
37
38 epytest
39 }