<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/virtualenv.git/src/virtualenv/util/path, branch main</title>
<subtitle>github.com: pypa/virtualenv.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/'/>
<entry>
<title>3.12 support and no setuptools/wheel on 3.12+ (#2558)</title>
<updated>2023-04-27T23:36:03+00:00</updated>
<author>
<name>chrysle</name>
<email>fritzihab@posteo.de</email>
</author>
<published>2023-04-27T23:36:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=fd93dd79be89b21e6e9d43ca2dd1b02b811f6d6f'/>
<id>fd93dd79be89b21e6e9d43ca2dd1b02b811f6d6f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop Python 2 support (#2548)</title>
<updated>2023-04-19T23:05:21+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2023-04-19T23:05:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=04af5026d8eff9ab34cd6f4a47e2f9de4f10a25c'/>
<id>04af5026d8eff9ab34cd6f4a47e2f9de4f10a25c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump dependencies and build tools (#2394)</title>
<updated>2022-08-04T08:39:15+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2022-08-04T08:39:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=fd064dc08f69faeba740234d76960575ec988a6f'/>
<id>fd064dc08f69faeba740234d76960575ec988a6f</id>
<content type='text'>
Signed-off-by: Bernát Gábor &lt;gaborjbernat@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Bernát Gábor &lt;gaborjbernat@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Drop support of running under Python 2.7 (#2382)</title>
<updated>2022-07-25T07:33:42+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2022-07-25T07:33:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=b85542c31ca8afcff317e618da434f59fa06d122'/>
<id>b85542c31ca8afcff317e618da434f59fa06d122</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Windows embedable support (#2353)</title>
<updated>2022-06-25T00:11:17+00:00</updated>
<author>
<name>reksarka</name>
<email>reksarka@gmail.com</email>
</author>
<published>2022-06-25T00:11:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=805dcffe002abf8a161be67358a5cc1422332e14'/>
<id>805dcffe002abf8a161be67358a5cc1422332e14</id>
<content type='text'>
* Bump pip and setuptools (#2348)

Signed-off-by: Bernát Gábor &lt;bgabor8@bloomberg.net&gt;

* Use shlex.quote instead of deprecated pipes.quote (#2351)

* Embeds the "python&lt;VERSION&gt;.zip" for Windows.

For example, for Python 3.10 the embeddable file name would be
"python310.zip". If this file would be found in `sys.path`, the
virtualenv should copy it into the "&lt;venv&gt;\Scripts\python310.zip".

* For Windows CPython3: *.dll/*.pyd -&gt; to_bin

* Fixture for a Python interpreter info.

Helps to test virtualenv creator classes.

* Creators tests: path_mock as separate module.

* Clarifies tests, separates testing tools.

* Tests for CPython3Windows sources.

* Tests for the embedded Python std lib for Windows.

* Add news entry.

* Replaces `yield from` for backward compability.

* FIX: Path mocking in pypy tests.

* Wrap `sys` `Path` with `str` for importlib.

The importlib accepts a Path-like objects from Python 3.6

* Makes PathMock ABC compatible with Python 2

* Does not collect tests for Python3 under Python 2

It is possible to make pass CPython3 tests under Python 2,
but it's better to disable it instead of decreasing the
readability and performance of Python 3 style.

* Allows empty `Path()` in Windows with Python 2

* Allows to load fixture files with PY2 Windows Path

* Skips one PY3 POSIX test in PY2 Windows

Co-authored-by: Bernát Gábor &lt;gaborjbernat@gmail.com&gt;
Co-authored-by: Lumír 'Frenzy' Balhar &lt;lbalhar@redhat.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Bump pip and setuptools (#2348)

Signed-off-by: Bernát Gábor &lt;bgabor8@bloomberg.net&gt;

* Use shlex.quote instead of deprecated pipes.quote (#2351)

* Embeds the "python&lt;VERSION&gt;.zip" for Windows.

For example, for Python 3.10 the embeddable file name would be
"python310.zip". If this file would be found in `sys.path`, the
virtualenv should copy it into the "&lt;venv&gt;\Scripts\python310.zip".

* For Windows CPython3: *.dll/*.pyd -&gt; to_bin

* Fixture for a Python interpreter info.

Helps to test virtualenv creator classes.

* Creators tests: path_mock as separate module.

* Clarifies tests, separates testing tools.

* Tests for CPython3Windows sources.

* Tests for the embedded Python std lib for Windows.

* Add news entry.

* Replaces `yield from` for backward compability.

* FIX: Path mocking in pypy tests.

* Wrap `sys` `Path` with `str` for importlib.

The importlib accepts a Path-like objects from Python 3.6

* Makes PathMock ABC compatible with Python 2

* Does not collect tests for Python3 under Python 2

It is possible to make pass CPython3 tests under Python 2,
but it's better to disable it instead of decreasing the
readability and performance of Python 3 style.

* Allows empty `Path()` in Windows with Python 2

* Allows to load fixture files with PY2 Windows Path

* Skips one PY3 POSIX test in PY2 Windows

Co-authored-by: Bernát Gábor &lt;gaborjbernat@gmail.com&gt;
Co-authored-by: Lumír 'Frenzy' Balhar &lt;lbalhar@redhat.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid symlinking the contents of /usr into PyPy3 virtualenvs (#2310)</title>
<updated>2022-03-07T13:23:07+00:00</updated>
<author>
<name>Stefano Rivera</name>
<email>github@rivera.za.net</email>
</author>
<published>2022-03-07T13:23:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=3a90a6bb48313ad45bfc448637b91c630b5014ac'/>
<id>3a90a6bb48313ad45bfc448637b91c630b5014ac</id>
<content type='text'>
Co-authored-by: Bernát Gábor &lt;bgabor8@bloomberg.net&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Bernát Gábor &lt;bgabor8@bloomberg.net&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[pre-commit.ci] pre-commit autoupdate (#2242)</title>
<updated>2021-12-27T11:08:39+00:00</updated>
<author>
<name>pre-commit-ci[bot]</name>
<email>66853113+pre-commit-ci[bot]@users.noreply.github.com</email>
</author>
<published>2021-12-27T11:08:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=abc655e428cd9a1070ee6ced2a83afcc3f972aa9'/>
<id>abc655e428cd9a1070ee6ced2a83afcc3f972aa9</id>
<content type='text'>
Co-authored-by: pre-commit-ci[bot] &lt;66853113+pre-commit-ci[bot]@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: pre-commit-ci[bot] &lt;66853113+pre-commit-ci[bot]@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Drop Python 3.4 support (#2143)</title>
<updated>2021-07-13T09:35:16+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2021-07-13T09:35:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=ce6efc84c042106ebb013b931e936dad566cc7a2'/>
<id>ce6efc84c042106ebb013b931e936dad566cc7a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump pip to 20.3.3 and wheel to 0.36.2 (#2036)</title>
<updated>2021-01-12T10:04:54+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2021-01-12T10:04:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=39fdf9580bbc25963113761fb7ad8973d6d35a48'/>
<id>39fdf9580bbc25963113761fb7ad8973d6d35a48</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>clean up a few small things (#2002)</title>
<updated>2020-11-01T09:31:16+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2020-11-01T09:31:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=3ae716faf3969a357b1e2be21adaa1cbd3c533e6'/>
<id>3ae716faf3969a357b1e2be21adaa1cbd3c533e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
