- update to 1.11.2:
* Fixed easy_install installed virtualenvs by updated pip to 1.5.2
* Fixed an issue where pip and setuptools were not getting installed when using
the ``--system-site-packages`` flag.
* Updated setuptools to fix an issue when installed with easy_install
* Fixed an issue with Python 3.4 and sys.stdout encoding being set to ascii (forwarded request 221797 from dirkmueller)
OBS-URL: https://build.opensuse.org/request/show/221980
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=21
- Update to version 1.11:
+ BACKWARDS INCOMPATIBLE Switched to using wheels for the bundled
copies of setuptools and pip. Using sdists is no longer supported
+ BACKWARDS INCOMPATIBLE Modified the handling of --extra-search-dirs.
This option now works like pip’s --find-links option, in that it
adds extra directories to search for compatible wheels for pip and
setuptools. The actual wheel selected is chosen based on version
and compatibility, using the same algorithm as pip install setuptools.
+ Upgraded pip to v1.5
+ Upgraded setuptools to v1.4
- Symlink /usr/bin/virtualenv in buildroot (u-a warning) and ghost
alternatives link on 12.3 or newer
OBS-URL: https://build.opensuse.org/request/show/213140
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=20
copies of setuptools and pip. Using sdists is no longer supported
+ BACKWARDS INCOMPATIBLE Modified the handling of --extra-search-dirs.
This option now works like pip’s --find-links option, in that it
adds extra directories to search for compatible wheels for pip and
setuptools. The actual wheel selected is chosen based on version
and compatibility, using the same algorithm as pip install setuptools.
- Symlink /usr/bin/virtualenv in buildroot (u-a warning) and ghost
alternatives link on 12.3 or newer
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=35
+ BACKWARDS INCOMPATIBLE Switched to using wheels for the bundled copies of setuptools and pip. Using sdists is no longer supported - users supplying their own versions of pip/setuptools will need to provide wheels.
+ BACKWARDS INCOMPATIBLE Modified the handling of --extra-search-dirs. This option now works like pip’s --find-links option, in that it adds extra directories to search for compatible wheels for pip and setuptools. The actual wheel selected is chosen based on version and compatibility, using the same algorithm as pip install setuptools.
+ Upgraded pip to v1.5
+ Upgraded setuptools to v1.4
- Fix non-executable script warning, symlink /usr/bin/virtualenv in buildroot (u-a warning)
and ghost alternatives link on 12.3 or newer
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=31
- Don't drop shipped setuptools / pip, they've been fetched from the
interwebs previously. It doesn't make sense to use the (currently
matching) system equivalents, it's meant to be self-contained
- Use update-alternatives for parallel-installability with Python3 version
- Update to version 1.10:
+ BACKWARDS INCOMPATIBLE Dropped support for Python 2.5. The minimum supported
Python version is now Python 2.6.
+ BACKWARDS INCOMPATIBLE Using virtualenv.py as an isolated script (i.e.
without an associated virtualenv_support directory) is no longer supported
for security reasons and will fail with an error.
+ Along with this, --never-download is now always pinned to True, and is only
being maintained in the short term for backward compatibility (Pull #412).
+ IMPORTANT Switched to the new setuptools (v0.9.7) which has been merged with
Distribute again and works for Python 2 and 3 with one codebase. The
--distribute and --setuptools options are now no-op.
+ Updated to pip 1.4.
+ Added support for PyPy3k
+ Added the option to use a version number with the -p option to get the system
copy of that Python version (Windows only)
+ Removed embedded ez_setup.py, distribute_setup.py and distribute_from_egg.py
files as part of switching to merged setuptools.
+ Fixed --relocatable to work better on Windows.
+ Fixed issue with readline on Windows.
- Spec clean:
+ Depend on setuptools instead of distribute again
+ Package README.rst
+ Build HTML documentation and install it (instead of sources)
OBS-URL: https://build.opensuse.org/request/show/184868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=17
+ BACKWARDS INCOMPATIBLE Dropped support for Python 2.5. The minimum supported
Python version is now Python 2.6.
+ BACKWARDS INCOMPATIBLE Using virtualenv.py as an isolated script (i.e.
without an associated virtualenv_support directory) is no longer supported
for security reasons and will fail with an error.
+ Along with this, --never-download is now always pinned to True, and is only
being maintained in the short term for backward compatibility (Pull #412).
+ IMPORTANT Switched to the new setuptools (v0.9.7) which has been merged with
Distribute again and works for Python 2 and 3 with one codebase. The
--distribute and --setuptools options are now no-op.
+ Updated to pip 1.4.
+ Added support for PyPy3k
+ Added the option to use a version number with the -p option to get the system
copy of that Python version (Windows only)
+ Removed embedded ez_setup.py, distribute_setup.py and distribute_from_egg.py
files as part of switching to merged setuptools.
+ Fixed --relocatable to work better on Windows.
+ Fixed issue with readline on Windows.
- Spec clean:
+ Depend on setuptools instead of distribute again
+ Package README.rst
+ Build HTML documentation and install it (instead of sources)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=25
* Updated to pip 1.3.1 that fixed a major backward incompatible
change of parsing URLs to externally hosted packages that got
accidentily included in pip 1.3.
- Aditional changes from 1.9
* Unset VIRTUAL_ENV environment variable in deactivate.bat
(Pull #364)
* Upgraded distribute to 0.6.34.
* Added --no-setuptools and --no-pip options (Pull #336).
* Fixed Issue #373. virtualenv-1.8.4 was failing in cygwin
(Pull #382).
* Fixed Issue #378. virtualenv is now "multiarch" aware on
debian/ubuntu (Pull #379).
* Fixed issue with readline module path on pypy and OSX (Pull #374).
* Made 64bit detection compatible with Python 2.5 (Pull #393).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=23
- Updated distribute to 0.6.31. This fixes#359 (numpy install
regression) on UTF-8 platforms, and provides a workaround on
other platforms: PYTHONIOENCODING=utf8 pip install numpy.
- When installing virtualenv via curl, don't forget to filter
out arguments the distribute setup script won't understand.
Fixes#358.
- Added some more integration tests.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=21
- Fixed readline on OS X. Thanks minrk
- Updated distribute to 0.6.30 (improves our error reporting,
plus new distribute features and fixes). Thanks Gabriel (g2p)
- Added compatibility with multiarch Python (Python 3.3 for example).
Added an integration test. Thanks Gabriel (g2p)
- Added ability to install distribute from a user-provided egg,
rather than the bundled sdist, for better speed. Thanks Paul Moore.
- Make the creation of lib64 symlink smarter about already-existing
symlink, and more explicit about full paths. Fixes#334 and #330.
Thanks Jeremy Orem.
- Give lib64 site-dir preference over lib on 64-bit systems, to
avoid wrong 32-bit compiles in the venv. Fixes#328. Thanks Damien
Nozay.
- Fix a bug with prompt-handling in activate.csh in non-interactive
csh shells. Fixes#332. Thanks Benjamin Root for report and patch.
- Make it possible to create a virtualenv from within a Python 3.3
pyvenv. Thanks Chris McDonough for the report.
- Add optional --setuptools option to be able to switch to it in
case distribute is the default (like in Debian).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=20
- Dropped support for Python 2.4 The minimum supported Python
version is now Python 2.5.
- Fix --relocatable on systems that use lib64. Fixes#78. Thanks
Branden Rolston.
- Symlink some additional modules under Python 3. Fixes#194.
Thanks Vinay Sajip, Ian Clelland, and Stefan Holek for the report.
- Fix --relocatable when a script uses __future__ imports. Thanks
Branden Rolston.
- Fix a bug in the config option parser that prevented setting
negative options with environemnt variables. Thanks Ralf Schmitt.
- Allow setting --no-site-packages from the config file.
- Use /usr/bin/multiarch-platform if available to figure out the
include directory. Thanks for the patch, Mika Laitio.
- Fix install_name_tool replacement to work on Python 3.X.
- Handle paths of users' site-packages on Mac OS X correctly
when changing the prefix.
- Updated the embedded version of distribute to 0.6.28 and pip
to 1.2.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=16