<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/virtualenv.git/src/virtualenv/create, branch 20.16.2</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>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>docs: fix simple typo, developent -&gt; development (#2377)</title>
<updated>2022-07-23T15:51:57+00:00</updated>
<author>
<name>Tim Gates</name>
<email>tim.gates@iress.com</email>
</author>
<published>2022-07-23T15:51:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=d63730e58adfb7562850490e767670a94047d62a'/>
<id>d63730e58adfb7562850490e767670a94047d62a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ignores missing DLLs dir in CPython3Windows (#2369)</title>
<updated>2022-06-29T00:10:53+00:00</updated>
<author>
<name>reksarka</name>
<email>reksarka@gmail.com</email>
</author>
<published>2022-06-29T00:10:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=245cae75ecbefd9fa815633a2b8dedb9b403d0f0'/>
<id>245cae75ecbefd9fa815633a2b8dedb9b403d0f0</id>
<content type='text'>
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>
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>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>Fixes for Windows PyPy 3.6 (#2363)</title>
<updated>2022-06-24T23:02:35+00:00</updated>
<author>
<name>reksarka</name>
<email>reksarka@gmail.com</email>
</author>
<published>2022-06-24T23:02:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=b01515bce60dd00723546ec022e0549fcfab3cfb'/>
<id>b01515bce60dd00723546ec022e0549fcfab3cfb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support Python 2.7 framework-style distributions on macOS 12 (#2325)</title>
<updated>2022-04-11T07:54:23+00:00</updated>
<author>
<name>Nicholas Hutchinson</name>
<email>nshutchinson@gmail.com</email>
</author>
<published>2022-04-11T07:54:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=63e80ff9cb3adb16420d2010c8d43eca9082d1d3'/>
<id>63e80ff9cb3adb16420d2010c8d43eca9082d1d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix 20ms startup penalty added by virtualenv (#2317)</title>
<updated>2022-03-18T14:09:53+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2022-03-18T14:09:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=a16f609ec9ff6797d7694591151371c51698d911'/>
<id>a16f609ec9ff6797d7694591151371c51698d911</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>fix: cast type from Path to text (#2288)</title>
<updated>2022-02-05T11:59:10+00:00</updated>
<author>
<name>Isac Byeonghoon Yoo</name>
<email>bh322yoo@gmail.com</email>
</author>
<published>2022-02-05T11:59:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=f969a91240e29eace6b7ddcc390bb1553027a483'/>
<id>f969a91240e29eace6b7ddcc390bb1553027a483</id>
<content type='text'>
Co-authored-by: pre-commit-ci[bot] &lt;66853113+pre-commit-ci[bot]@users.noreply.github.com&gt;
Co-authored-by: Bernát Gábor &lt;gaborjbernat@gmail.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;
Co-authored-by: Bernát Gábor &lt;gaborjbernat@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[pre-commit.ci] pre-commit autoupdate (#2293)</title>
<updated>2022-02-01T00:36:40+00:00</updated>
<author>
<name>pre-commit-ci[bot]</name>
<email>66853113+pre-commit-ci[bot]@users.noreply.github.com</email>
</author>
<published>2022-02-01T00:36:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=2f5453641b1cc7482c27fb26c6cc94ad70ec32f5'/>
<id>2f5453641b1cc7482c27fb26c6cc94ad70ec32f5</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>
</feed>
