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: Fri, 17 Mar 2023 17:18:21
Message-Id: 1679073481.8154f2b9bc6cad395fb626383819748a7bd01ffa.mgorny@gentoo
1 commit: 8154f2b9bc6cad395fb626383819748a7bd01ffa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 17:13:50 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 17:18:01 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8154f2b9
7
8 dev-python/virtualenv: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/virtualenv/Manifest | 3 -
13 dev-python/virtualenv/virtualenv-20.17.1.ebuild | 107 ----------------------
14 dev-python/virtualenv/virtualenv-20.18.0.ebuild | 112 ------------------------
15 dev-python/virtualenv/virtualenv-20.19.0.ebuild | 108 -----------------------
16 4 files changed, 330 deletions(-)
17
18 diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
19 index a015159a673a..d25091220f98 100644
20 --- a/dev-python/virtualenv/Manifest
21 +++ b/dev-python/virtualenv/Manifest
22 @@ -1,5 +1,2 @@
23 -DIST virtualenv-20.17.1.tar.gz 12269737 BLAKE2B 5caa223d549ecb69de3a17dec84a608f34f01c5abd39ab478c27438f71e36e6878a719f9002464dbf0f335bc90a2f4552e201d59e0e757fabef6f3caaaf857fb SHA512 6b32145f431f6b1f4c2a2ed888e8b9e5cb941e04ea1e68830053dceac80ee8bbf2286c1f353951d50d4b8417b8d81ee4b30dae597c94f2a3baf50f174f7ef4d4
24 -DIST virtualenv-20.18.0.tar.gz 12063086 BLAKE2B 272957077dd0a5868e8979c7c34bda1ae28af857d1d5bbafeef6955bcf44a7c5d38f4f131b57a2593180ffdc5a034b18998ba3e4307b7191ebafccc80ef46278 SHA512 b02533878b8d8859f10b51dbdb9fecddf9b49aa2cf1437ddc10cadba82e5361fdeb8b8c94efcc3c8268ddecef31651c28c213e87588aa917479e8d0e2e823493
25 -DIST virtualenv-20.19.0.tar.gz 12063084 BLAKE2B 6a6d94c7099aa841523909173b04821697c7fc8b284325dbf191f6b2184bce19802924e0a001267448a785c35f8bbd7cee74f7514a375e4e47a9d3275404f756 SHA512 75c63fea11ad070985cb2ba17adfcb7e1739e8798b80919cc17a527d7180f68a04197436b44146cd07423d8d2e4982d1716b0e18159add5ce6a748b31f6b2776
26 DIST virtualenv-20.20.0.tar.gz 12069625 BLAKE2B 3db53d2859c542953be233af0d195d992eecef345700ad7c229b88519f7042189907263d312d3613b45c5c069bec2440a8639bcc58b2c6894ed79301735e65b2 SHA512 6710efcbead1358479961c84ec3f6b9c3a1fc59c2f6b33fa13e2609554f7072aee7ef8cc07b4aa2fbc27ac950a78e447529fb8ceb2e4ee0881a4356a67d26641
27 DIST virtualenv-20.21.0.tar.gz 12070063 BLAKE2B f69d5934191ccd8e9420c37e51b53df7876961d6f13d0f75845530893fd91df29a512e64eaa27135535816250a3149087029e6fe1b15317b8079af9cee2832ea SHA512 77aae5ebc5007093953c30da1eed996e851a65c7dd1f7a3a85961a1bb251b3d7970936eea1efe8babb216d2024072bdbf1c1a97ba8760a04a0abf6e7c3a27d09
28
29 diff --git a/dev-python/virtualenv/virtualenv-20.17.1.ebuild b/dev-python/virtualenv/virtualenv-20.17.1.ebuild
30 deleted file mode 100644
31 index 58de01bde78f..000000000000
32 --- a/dev-python/virtualenv/virtualenv-20.17.1.ebuild
33 +++ /dev/null
34 @@ -1,107 +0,0 @@
35 -# Copyright 1999-2023 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=8
39 -
40 -DISTUTILS_USE_PEP517=setuptools
41 -PYTHON_COMPAT=( python3_{9..11} pypy3 )
42 -
43 -inherit distutils-r1
44 -
45 -DESCRIPTION="Virtual Python Environment builder"
46 -HOMEPAGE="
47 - https://virtualenv.pypa.io/en/stable/
48 - https://pypi.org/project/virtualenv/
49 - https://github.com/pypa/virtualenv/
50 -"
51 -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
52 -
53 -LICENSE="MIT"
54 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
55 -SLOT="0"
56 -
57 -RDEPEND="
58 - >=dev-python/distlib-0.3.6[${PYTHON_USEDEP}]
59 - >=dev-python/filelock-3.4.1[${PYTHON_USEDEP}]
60 - >=dev-python/platformdirs-2.4[${PYTHON_USEDEP}]
61 - >=dev-python/setuptools-63.2.0[${PYTHON_USEDEP}]
62 -"
63 -# coverage is used somehow magically in virtualenv, maybe it actually
64 -# tests something useful
65 -BDEPEND="
66 - dev-python/setuptools-scm[${PYTHON_USEDEP}]
67 - test? (
68 - dev-python/coverage[${PYTHON_USEDEP}]
69 - dev-python/flaky[${PYTHON_USEDEP}]
70 - >=dev-python/pip-22.2.1[${PYTHON_USEDEP}]
71 - >=dev-python/pytest-freezegun-0.4.2[${PYTHON_USEDEP}]
72 - >=dev-python/pytest-mock-3.6.1[${PYTHON_USEDEP}]
73 - >=dev-python/pytest-timeout-2.1[${PYTHON_USEDEP}]
74 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
75 - dev-python/wheel[${PYTHON_USEDEP}]
76 - >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
77 - )
78 -"
79 -
80 -# (unpackaged deps)
81 -#distutils_enable_sphinx docs \
82 -# dev-python/sphinx-argparse \
83 -# dev-python/sphinx-rtd-theme \
84 -# dev-python/towncrier
85 -distutils_enable_tests pytest
86 -
87 -src_configure() {
88 - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
89 -}
90 -
91 -python_test() {
92 - local EPYTEST_DESELECT=(
93 - tests/unit/activation/test_xonsh.py
94 - tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
95 - tests/unit/create/test_creator.py::test_cross_major
96 - # tests failing without python2 installed
97 - "tests/unit/create/test_creator.py::test_py_pyc_missing[True-False]"
98 - "tests/unit/create/test_creator.py::test_py_pyc_missing[False-False]"
99 - )
100 - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
101 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
102 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
103 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
104 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
105 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]'
106 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]'
107 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]'
108 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]'
109 - 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools'
110 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]'
111 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]'
112 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10-64-bin-]'
113 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10--bin-]'
114 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]'
115 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]'
116 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]'
117 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]'
118 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]'
119 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--bin-]'
120 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10-64-bin-]'
121 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10--bin-]'
122 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7-64-bin-]'
123 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7--bin-]'
124 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]'
125 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]'
126 - )
127 - [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
128 - # TODO
129 - tests/unit/discovery/py_info/test_py_info.py::test_py_info_setuptools
130 - tests/unit/discovery/py_info/test_py_info.py::test_custom_venv_install_scheme_is_prefered
131 - tests/unit/discovery/py_info/test_py_info.py::test_fallback_existent_system_executable
132 - )
133 -
134 - epytest
135 -}
136 -
137 -pkg_postinst() {
138 - elog "Please note that while virtualenv package no longer supports"
139 - elog "Python 2.7, you can still create py2.7 virtualenvs via:"
140 - elog " $ virtualenv -p 2.7 ..."
141 -}
142
143 diff --git a/dev-python/virtualenv/virtualenv-20.18.0.ebuild b/dev-python/virtualenv/virtualenv-20.18.0.ebuild
144 deleted file mode 100644
145 index 2584f7c8b178..000000000000
146 --- a/dev-python/virtualenv/virtualenv-20.18.0.ebuild
147 +++ /dev/null
148 @@ -1,112 +0,0 @@
149 -# Copyright 1999-2023 Gentoo Authors
150 -# Distributed under the terms of the GNU General Public License v2
151 -
152 -EAPI=8
153 -
154 -DISTUTILS_USE_PEP517=hatchling
155 -PYTHON_COMPAT=( python3_{9..11} pypy3 )
156 -
157 -inherit distutils-r1 pypi
158 -
159 -DESCRIPTION="Virtual Python Environment builder"
160 -HOMEPAGE="
161 - https://virtualenv.pypa.io/en/stable/
162 - https://pypi.org/project/virtualenv/
163 - https://github.com/pypa/virtualenv/
164 -"
165 -
166 -LICENSE="MIT"
167 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
168 -SLOT="0"
169 -
170 -RDEPEND="
171 - <dev-python/distlib-1[${PYTHON_USEDEP}]
172 - >=dev-python/distlib-0.3.6[${PYTHON_USEDEP}]
173 - <dev-python/filelock-4[${PYTHON_USEDEP}]
174 - >=dev-python/filelock-3.4.1[${PYTHON_USEDEP}]
175 - >=dev-python/platformdirs-2.4[${PYTHON_USEDEP}]
176 -"
177 -# coverage is used somehow magically in virtualenv, maybe it actually
178 -# tests something useful
179 -BDEPEND="
180 - dev-python/hatch-vcs[${PYTHON_USEDEP}]
181 - test? (
182 - dev-python/coverage[${PYTHON_USEDEP}]
183 - dev-python/flaky[${PYTHON_USEDEP}]
184 - >=dev-python/pip-22.2.1[${PYTHON_USEDEP}]
185 - >=dev-python/pytest-freezegun-0.4.2[${PYTHON_USEDEP}]
186 - >=dev-python/pytest-mock-3.6.1[${PYTHON_USEDEP}]
187 - >=dev-python/pytest-timeout-2.1[${PYTHON_USEDEP}]
188 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
189 - dev-python/wheel[${PYTHON_USEDEP}]
190 - >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
191 - )
192 -"
193 -
194 -# (unpackaged deps)
195 -#distutils_enable_sphinx docs \
196 -# dev-python/sphinx-argparse \
197 -# dev-python/sphinx-rtd-theme \
198 -# dev-python/towncrier
199 -distutils_enable_tests pytest
200 -
201 -src_prepare() {
202 - sed -i -e '/platformdirs/s:<3,::' pyproject.toml || die
203 - distutils-r1_src_prepare
204 -}
205 -
206 -src_configure() {
207 - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
208 -}
209 -
210 -python_test() {
211 - local EPYTEST_DESELECT=(
212 - tests/unit/activation/test_xonsh.py
213 - tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
214 - tests/unit/create/test_creator.py::test_cross_major
215 - # tests failing without python2 installed
216 - "tests/unit/create/test_creator.py::test_py_pyc_missing[True-False]"
217 - "tests/unit/create/test_creator.py::test_py_pyc_missing[False-False]"
218 - )
219 - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
220 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
221 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
222 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
223 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
224 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]'
225 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]'
226 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]'
227 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]'
228 - 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools'
229 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]'
230 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]'
231 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10-64-bin-]'
232 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10--bin-]'
233 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]'
234 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]'
235 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]'
236 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]'
237 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]'
238 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--bin-]'
239 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10-64-bin-]'
240 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10--bin-]'
241 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7-64-bin-]'
242 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7--bin-]'
243 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]'
244 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]'
245 - )
246 - [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
247 - # TODO
248 - tests/unit/discovery/py_info/test_py_info.py::test_py_info_setuptools
249 - tests/unit/discovery/py_info/test_py_info.py::test_custom_venv_install_scheme_is_prefered
250 - tests/unit/discovery/py_info/test_py_info.py::test_fallback_existent_system_executable
251 - )
252 -
253 - epytest
254 -}
255 -
256 -pkg_postinst() {
257 - elog "Please note that while virtualenv package no longer supports"
258 - elog "Python 2.7, you can still create py2.7 virtualenvs via:"
259 - elog " $ virtualenv -p 2.7 ..."
260 -}
261
262 diff --git a/dev-python/virtualenv/virtualenv-20.19.0.ebuild b/dev-python/virtualenv/virtualenv-20.19.0.ebuild
263 deleted file mode 100644
264 index 3a67e6028e58..000000000000
265 --- a/dev-python/virtualenv/virtualenv-20.19.0.ebuild
266 +++ /dev/null
267 @@ -1,108 +0,0 @@
268 -# Copyright 1999-2023 Gentoo Authors
269 -# Distributed under the terms of the GNU General Public License v2
270 -
271 -EAPI=8
272 -
273 -DISTUTILS_USE_PEP517=hatchling
274 -PYTHON_COMPAT=( python3_{9..11} pypy3 )
275 -
276 -inherit distutils-r1 pypi
277 -
278 -DESCRIPTION="Virtual Python Environment builder"
279 -HOMEPAGE="
280 - https://virtualenv.pypa.io/en/stable/
281 - https://pypi.org/project/virtualenv/
282 - https://github.com/pypa/virtualenv/
283 -"
284 -
285 -LICENSE="MIT"
286 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
287 -SLOT="0"
288 -
289 -RDEPEND="
290 - <dev-python/distlib-1[${PYTHON_USEDEP}]
291 - >=dev-python/distlib-0.3.6[${PYTHON_USEDEP}]
292 - <dev-python/filelock-4[${PYTHON_USEDEP}]
293 - >=dev-python/filelock-3.4.1[${PYTHON_USEDEP}]
294 - <dev-python/platformdirs-4[${PYTHON_USEDEP}]
295 - >=dev-python/platformdirs-2.4[${PYTHON_USEDEP}]
296 -"
297 -# coverage is used somehow magically in virtualenv, maybe it actually
298 -# tests something useful
299 -BDEPEND="
300 - dev-python/hatch-vcs[${PYTHON_USEDEP}]
301 - test? (
302 - dev-python/coverage[${PYTHON_USEDEP}]
303 - dev-python/flaky[${PYTHON_USEDEP}]
304 - >=dev-python/pip-22.2.1[${PYTHON_USEDEP}]
305 - >=dev-python/pytest-freezegun-0.4.2[${PYTHON_USEDEP}]
306 - >=dev-python/pytest-mock-3.6.1[${PYTHON_USEDEP}]
307 - >=dev-python/pytest-timeout-2.1[${PYTHON_USEDEP}]
308 - >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
309 - dev-python/wheel[${PYTHON_USEDEP}]
310 - >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
311 - )
312 -"
313 -
314 -# (unpackaged deps)
315 -#distutils_enable_sphinx docs \
316 -# dev-python/sphinx-argparse \
317 -# dev-python/sphinx-rtd-theme \
318 -# dev-python/towncrier
319 -distutils_enable_tests pytest
320 -
321 -src_configure() {
322 - export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
323 -}
324 -
325 -python_test() {
326 - local EPYTEST_DESELECT=(
327 - tests/unit/activation/test_xonsh.py
328 - tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
329 - tests/unit/create/test_creator.py::test_cross_major
330 - # tests failing without python2 installed
331 - "tests/unit/create/test_creator.py::test_py_pyc_missing[True-False]"
332 - "tests/unit/create/test_creator.py::test_py_pyc_missing[False-False]"
333 - )
334 - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
335 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
336 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
337 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
338 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
339 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]'
340 - 'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]'
341 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]'
342 - 'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]'
343 - 'tests/unit/create/test_creator.py::test_zip_importer_can_import_setuptools'
344 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9-64-bin-]'
345 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.9--bin-]'
346 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10-64-bin-]'
347 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7.10--bin-]'
348 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7-64-bin-]'
349 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3.7--bin-]'
350 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3-64-bin-]'
351 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[PyPy-3--bin-]'
352 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9-64-bin-]'
353 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.9--bin-]'
354 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10-64-bin-]'
355 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7.10--bin-]'
356 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7-64-bin-]'
357 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3.7--bin-]'
358 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3-64-bin-]'
359 - 'tests/unit/discovery/py_info/test_py_info_exe_based_of.py::test_discover_ok[python-3--bin-]'
360 - )
361 - [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=(
362 - # TODO
363 - tests/unit/discovery/py_info/test_py_info.py::test_py_info_setuptools
364 - tests/unit/discovery/py_info/test_py_info.py::test_custom_venv_install_scheme_is_prefered
365 - tests/unit/discovery/py_info/test_py_info.py::test_fallback_existent_system_executable
366 - )
367 -
368 - epytest
369 -}
370 -
371 -pkg_postinst() {
372 - elog "Please note that while virtualenv package no longer supports"
373 - elog "Python 2.7, you can still create py2.7 virtualenvs via:"
374 - elog " $ virtualenv -p 2.7 ..."
375 -}