- Switch off tests, they are just broken.
- Update to 20.7.0:
- Removed xonsh activator due to this breaking fairly often the
CI and lack of support from those packages maintainers,
upstream is encouraged to continue supporting the project as
a plugin
- Support Python interpreters without distutils (fallback to
syconfig in these cases)
- Plugins now use 'selectable' entry points
- add libffi-7.dll to the hard-coded list of dlls for PyPy
- Drop python 3.4 support as it has been over 2 years since EOL
- Use the better maintained platformdirs instead of appdirs
- Built in discovery class is always preferred over plugin
supplied classes.
- On the programmatic API allow passing in the environment
variable dictionary to use, defaults to os.environ if not
specified
- The builtin discovery takes now a --try-first-with argument
and is first attempted as valid interpreters. One can use
this to force discovery of a given python executable when the
discovery order/mechanism raises errors
OBS-URL: https://build.opensuse.org/request/show/910165
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=102
- On the programmatic API allow passing in the environment variable
dictionary to use, defaults to ``os.environ`` if not specified
- Upgrade embedded setuptools to ``51.3.3`` from ``51.1.2``
- Bump embed pip to ``20.3.3``, setuptools to ``51.1.1`` and wheel to ``0.36.2``
- Allow unfunctioning of pydoc to fail freely so that virtualenvs can be
activated under Zsh with set -e (since otherwise ``unset -f`` and
``unfunction`` exit with 1 if the function does not exist in Zsh)
- Drop cached python information if the system executable is no longer
present (for example when the executable is a shim and the mapped
executable is replaced - such is the case with pyenv)
- The builtin discovery takes now a ``--try-first-with`` argument and is
first attempted as valid interpreters. One can use this to force discovery
of a given python executable when the discovery order/mechanism raises errors -
- On Windows python ``3.7+`` distributions where the exe shim is missing
fallback to the old ways - by :user:`gaborbernat`. (`#1986
- When discovering interpreters on Windows, via the PEP-514, prefer
``PythonCore`` releases over other ones. virtualenv
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=95
* fix powershell activation when sourced (#1398)
* fix regression - sh activation script not working under sh (only bash) (#1396)
* activate.ps1 syntax and style updated to follow PSStyleAnalyzer rules (#1371)
* Allow creating virtual environments for 3.xy. (#1385)
* Report error when running activate scripts directly
* Extend the LICENSE search paths list by lib64/pythonX.Y to support Linux vendors who install their Python to /usr/lib64/pythonX.Y
* Raise an error if the target path contains the operating systems path separator (using this would break our activation scripts)
* Drop Jython support
* Add tests covering prompt manipulation during activation/deactivation, and harmonize behavior of all supported shells
- Update to 16.4.3:
* Revert the symlink fix, causing debian packaging issues. (#1390)
* Fix license() builtin by copying the LICENSE file into the virtualenv - by asottile. (#1317)
* fixes the scenario where the python base install is symlinked with relative symlinks (#490)
* Use importlib over imp in virtualenv.py for python >= 3.4 - by Anthony Sottile (#1293)
* Copy or link PyPy header files instead of include directory itself (#1302)
* Allow virtualenv creation with older pip not having config command correspondingly disabling configuration related features (such as pip cert setting) in this case. (#1303)
* Use importlib over deprecated imp` in ``distutils/__init__.py for python 3 - by Anthony Sottile (#955)
* Preserve cert option defined in pip.conf or environment variable. (#1273)
* fixed a ResourceWarning: unclosed file in call_subprocess() - by Mickaël Schoentgen (#1277)
* pre-import some built-in modules in site.py on PyPy according to PyPy's site.py - by microdog (#1281)
* Copy files from sys.exec_prefix only if it is really different path than used prefix, bugfix for #1270 (#1282)
* copyfile handles relative symlinks and symlinks to symlinks, avoiding problems when Python was installed using stow or homebrew. (#268)
* Fix preserving of original path when using fish and a subshell. (#904)
* Drop the source layout of the project, going back to how the source was laid out before 16.1.0. (#1241)
* Fix bootstrap script generation broken with 16.0.0. Support now both CPython, pypy, jython. (#1244)
* lib64 symlink is again relative (as was with < 16.1.0). (#1248)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=70
+ 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
+ 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