<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/virtualenv.git/src/virtualenv/util/zipapp.py, branch 20.4.5</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>Implement periodic update feature (#1841)</title>
<updated>2020-06-21T07:28:50+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2020-06-21T07:28:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=0cd009b5a1338f66397f71c85a75f576a2f3eabf'/>
<id>0cd009b5a1338f66397f71c85a75f576a2f3eabf</id>
<content type='text'>
Co-authored-by: Pradyun Gedam &lt;pradyunsg@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Pradyun Gedam &lt;pradyunsg@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>fix relative zipapp paths on UNIX</title>
<updated>2020-02-26T10:43:50+00:00</updated>
<author>
<name>Bernat Gabor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2020-02-26T10:41:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=21ba7aa7ee7bd7396a223a387279f8d4bb514c72'/>
<id>21ba7aa7ee7bd7396a223a387279f8d4bb514c72</id>
<content type='text'>
Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>handle application data folder is read only (#1661)</title>
<updated>2020-02-26T08:17:01+00:00</updated>
<author>
<name>Seungmin Ryu</name>
<email>yakkle@gmail.com</email>
</author>
<published>2020-02-26T08:17:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=c3453b6c381d28377c8e0115bf1124b2ca7b3c2b'/>
<id>c3453b6c381d28377c8e0115bf1124b2ca7b3c2b</id>
<content type='text'>
* fixed FileNotFoundError when directory isn't writable (#1640)

 - when using docker, if `user_data_dir()` isn't writable directory,
   `default_data_dir()` use `system temp directory` + `virtualenv`.
   for example, tempdir is `/tmp`, it use `/tmp/virtualenv`

* start making the app-data more explicit and robust

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* fix Windows

* fix docs

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&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>
* fixed FileNotFoundError when directory isn't writable (#1640)

 - when using docker, if `user_data_dir()` isn't writable directory,
   `default_data_dir()` use `system temp directory` + `virtualenv`.
   for example, tempdir is `/tmp`, it use `/tmp/virtualenv`

* start making the app-data more explicit and robust

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* fix Windows

* fix docs

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

Co-authored-by: Bernát Gábor &lt;gaborjbernat@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Lower min version of six to 1.9 (#1606)</title>
<updated>2020-02-13T16:58:29+00:00</updated>
<author>
<name>Sorin Sbarnea</name>
<email>ssbarnea@users.noreply.github.com</email>
</author>
<published>2020-02-13T16:58:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=52e4213096eba07ce71c14f36135172ea4c4a192'/>
<id>52e4213096eba07ce71c14f36135172ea4c4a192</id>
<content type='text'>
This change should allow installation of virtualenv on systems
with older six where their LTS support may prevent them from
upgrading it.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change should allow installation of virtualenv on systems
with older six where their LTS support may prevent them from
upgrading it.</pre>
</div>
</content>
</entry>
<entry>
<title>add a write through filesystem cache with locks for py informat… (#1505)</title>
<updated>2020-01-28T11:34:40+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2020-01-28T11:34:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=599907870e9a501224cf603af863c712e581c752'/>
<id>599907870e9a501224cf603af863c712e581c752</id>
<content type='text'>
* add a write through filesystem cache with locks for py information queries via sys executables

this speeds up significantly the creation process, as calling
subprocesess is at least an order of mangitued slower than reading the
information from a json dump

We also now default to the built-in mechanism

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* fix

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* make file lock reentrant and thread safe

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add a write through filesystem cache with locks for py information queries via sys executables

this speeds up significantly the creation process, as calling
subprocesess is at least an order of mangitued slower than reading the
information from a json dump

We also now default to the built-in mechanism

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* fix

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* make file lock reentrant and thread safe

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>separate describe/create - check upfront if can create (#1502)</title>
<updated>2020-01-21T12:20:43+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2020-01-21T12:20:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=886ba275110f0a1f4777445dab4757b90f7ac6da'/>
<id>886ba275110f0a1f4777445dab4757b90f7ac6da</id>
<content type='text'>
* start

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* test for Windows

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* test for Windows

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* fix Windows symlink cache
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* start

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* test for Windows

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* test for Windows

Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;

* fix Windows symlink cache
</pre>
</div>
</content>
</entry>
<entry>
<title>add zipapp support with bundled dependencies (#1491)</title>
<updated>2020-01-16T11:09:43+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>bgabor8@bloomberg.net</email>
</author>
<published>2020-01-16T11:09:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/virtualenv.git/commit/?id=b5f618f352557ddea5ec0e0bfe7188690b51e373'/>
<id>b5f618f352557ddea5ec0e0bfe7188690b51e373</id>
<content type='text'>
Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Bernat Gabor &lt;bgabor8@bloomberg.net&gt;</pre>
</div>
</content>
</entry>
</feed>
