<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/virtualenv.git/src/virtualenv.py, branch boostrap</title>
<subtitle>github.com: pypa/virtualenv.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/'/>
<entry>
<title>Set VIRTUAL_ENV enviroment variable in activate_this.py (#1057)</title>
<updated>2018-12-24T04:58:41+00:00</updated>
<author>
<name>nonylene</name>
<email>nonylene@gmail.com</email>
</author>
<published>2018-12-24T04:58:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=971d341ce383420af342a8f9d531ce77242fda0e'/>
<id>971d341ce383420af342a8f9d531ce77242fda0e</id>
<content type='text'>
* Set VIRTUAL_ENV enviroment in activate_this.py

VIRTUAL_ENV was not set in activate_this.py, while set in other activate scripts.

* Add tests for activate_this.py

* Fix syntax in test_activate_this.py

* fix

* more robust testing for the activate this

* fix Jython support of activate this
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Set VIRTUAL_ENV enviroment in activate_this.py

VIRTUAL_ENV was not set in activate_this.py, while set in other activate scripts.

* Add tests for activate_this.py

* Fix syntax in test_activate_this.py

* fix

* more robust testing for the activate this

* fix Jython support of activate this
</pre>
</div>
</content>
</entry>
<entry>
<title>code improvements (#1262)</title>
<updated>2018-12-23T17:25:04+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2018-12-23T17:25:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=9f4cf651b6686d4fbd75034c8bafd3493079ef09'/>
<id>9f4cf651b6686d4fbd75034c8bafd3493079ef09</id>
<content type='text'>
- global variables capital
- pep-8 compliant variable names
- some pycharm specific ignores
- fixed some typos
- prefer format over %</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- global variables capital
- pep-8 compliant variable names
- some pycharm specific ignores
- fixed some typos
- prefer format over %</pre>
</div>
</content>
</entry>
<entry>
<title>Shell fixes (#1258)</title>
<updated>2018-12-23T16:55:13+00:00</updated>
<author>
<name>Bernát Gábor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2018-12-23T16:55:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=34fdfb5be3d13a4f874a7529cb6178cbacddf29c'/>
<id>34fdfb5be3d13a4f874a7529cb6178cbacddf29c</id>
<content type='text'>
* Always store _OLD_VIRTUAL_PATH in a sh compat format

When using a subshell from fish while within a virtualenv the
_OLD_VIRTUAL_PATH variable ends up in fish format and not the format of
the subshell. This breaks the first step of the activate script where it
attepts to deactivate the previous environment.

This patch will handle conversion to and from sh and fish formats within
the activate.fish script

* Add test and update to new delimiter

* Fix lint

Remove line that didn't lint as we don't need it.

* Rebuild virtualenv.py

* Add changelog

* fix_lint

* Try to add fish to build env

* Use less fish (only when running py tests)

* remove code duplication for activation testers

* Consolidate activation testing

- add tests for csh, bash
- rework bash, csh tests
- remove powershell singing
- powershell pydoc support

* file and with extension

* universal newline

* Add debug env var, and normalize on Linux to via realpath (Jython failure)

* switch to bat

* fix xonosh

* fix xonsh further

* fix jython

* fix lint

* enable pytest debug
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Always store _OLD_VIRTUAL_PATH in a sh compat format

When using a subshell from fish while within a virtualenv the
_OLD_VIRTUAL_PATH variable ends up in fish format and not the format of
the subshell. This breaks the first step of the activate script where it
attepts to deactivate the previous environment.

This patch will handle conversion to and from sh and fish formats within
the activate.fish script

* Add test and update to new delimiter

* Fix lint

Remove line that didn't lint as we don't need it.

* Rebuild virtualenv.py

* Add changelog

* fix_lint

* Try to add fish to build env

* Use less fish (only when running py tests)

* remove code duplication for activation testers

* Consolidate activation testing

- add tests for csh, bash
- rework bash, csh tests
- remove powershell singing
- powershell pydoc support

* file and with extension

* universal newline

* Add debug env var, and normalize on Linux to via realpath (Jython failure)

* switch to bat

* fix xonosh

* fix xonsh further

* fix jython

* fix lint

* enable pytest debug
</pre>
</div>
</content>
</entry>
<entry>
<title>Use os.path.realpath to resolve the symlink. (#1259)</title>
<updated>2018-12-19T10:51:54+00:00</updated>
<author>
<name>Adam Sampson</name>
<email>ats-github@offog.org</email>
</author>
<published>2018-12-19T10:51:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=89c734bac9b4d5621fa665e86de2c79549bb50e5'/>
<id>89c734bac9b4d5621fa665e86de2c79549bb50e5</id>
<content type='text'>
This simplifies the code; it's still covered by the test I added for #956.

Thanks to @lilydjwg for the suggestion!</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This simplifies the code; it's still covered by the test I added for #956.

Thanks to @lilydjwg for the suggestion!</pre>
</div>
</content>
</entry>
<entry>
<title>Dereference symlinks more thoroughly in copyfile (#956)</title>
<updated>2018-12-18T07:34:06+00:00</updated>
<author>
<name>Adam Sampson</name>
<email>ats-github@offog.org</email>
</author>
<published>2018-12-18T07:34:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=04ce79630d6aa1df87a6bb44a550353c1961953e'/>
<id>04ce79630d6aa1df87a6bb44a550353c1961953e</id>
<content type='text'>
copyfile was broken for symlinks that pointed to relative paths, and for
symlinks that pointed to further symlinks (which meant that virtualenv
failed to work in some cases when the Python executable it found was
a symlink, e.g. when Python had been installed using stow or homebrew;
issue #268).

Make it follow symlinks until it finds an actual file to copy.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
copyfile was broken for symlinks that pointed to relative paths, and for
symlinks that pointed to further symlinks (which meant that virtualenv
failed to work in some cases when the Python executable it found was
a symlink, e.g. when Python had been installed using stow or homebrew;
issue #268).

Make it follow symlinks until it finds an actual file to copy.</pre>
</div>
</content>
</entry>
<entry>
<title>fix master not embeded</title>
<updated>2018-12-16T18:00:22+00:00</updated>
<author>
<name>Bernat Gabor</name>
<email>gaborjbernat@gmail.com</email>
</author>
<published>2018-12-16T17:59:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=5bcb51d983750a3fe758907379baa6f17515a009'/>
<id>5bcb51d983750a3fe758907379baa6f17515a009</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix error with missing pip/certifi's cacert.pem</title>
<updated>2018-12-06T22:13:25+00:00</updated>
<author>
<name>Miro Hrončok</name>
<email>miro@hroncok.cz</email>
</author>
<published>2018-12-06T21:09:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=a6436ccc17ab347cf61de000498becdefd09e34b'/>
<id>a6436ccc17ab347cf61de000498becdefd09e34b</id>
<content type='text'>
See https://github.com/pypa/pip/blob/master/src/pip/_vendor/README.rst

It is acceptable to remove the pip/_vendor/requests/cacert.pem file from pip

Virtualenv now doesn't error on that
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://github.com/pypa/pip/blob/master/src/pip/_vendor/README.rst

It is acceptable to remove the pip/_vendor/requests/cacert.pem file from pip

Virtualenv now doesn't error on that
</pre>
</div>
</content>
</entry>
<entry>
<title>made lib64 symlink relative again (#1249)</title>
<updated>2018-12-03T09:43:25+00:00</updated>
<author>
<name>Wouter De Borger</name>
<email>wouter.deborger@inmanta.com</email>
</author>
<published>2018-12-03T09:43:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=75f3a2b7bb9d5f943ade6c2943ee6228a62a090e'/>
<id>75f3a2b7bb9d5f943ade6c2943ee6228a62a090e</id>
<content type='text'>
fixes #1248</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #1248</pre>
</div>
</content>
</entry>
<entry>
<title>Update default license URL to match upstream (#1247)</title>
<updated>2018-11-28T07:27:49+00:00</updated>
<author>
<name>Zachary Ware</name>
<email>zachary.ware@gmail.com</email>
</author>
<published>2018-11-28T07:27:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=ab3b733dde136a310d377b8a5043c0d9e90b178d'/>
<id>ab3b733dde136a310d377b8a5043c0d9e90b178d</id>
<content type='text'>
The previous value always resulted in a 404.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previous value always resulted in a 404.</pre>
</div>
</content>
</entry>
<entry>
<title>solved problem when using -u in a non interactive shell (#922)</title>
<updated>2018-11-19T21:59:45+00:00</updated>
<author>
<name>BrownTruck</name>
<email>BrownTruck@users.noreply.github.com</email>
</author>
<published>2018-11-19T21:59:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/virtualenv.git/commit/?id=8216878248a7f1cc29cb7b64278213bd720d9db0'/>
<id>8216878248a7f1cc29cb7b64278213bd720d9db0</id>
<content type='text'>
PS1 was set as undeclared (like when using shell provisionning in vagrant)

---

_This was automatically migrated from pypa/virtualenv#893 to reparent it to the `master` branch. Please see original pull request for any previous discussion._

_Original Submitter: @allan-simon_
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PS1 was set as undeclared (like when using shell provisionning in vagrant)

---

_This was automatically migrated from pypa/virtualenv#893 to reparent it to the `master` branch. Please see original pull request for any previous discussion._

_Original Submitter: @allan-simon_
</pre>
</div>
</content>
</entry>
</feed>
