988ae900db
Update tarball.
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=101
2021-08-03 09:07:08 +00:00
2bfa85c7d9
Clean up SPEC file
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=99
2021-03-11 23:24:21 +00:00
137b5ed8a9
- Actually switch off all activation tests, so we can shed all those
...
dependencies.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=98
2021-03-11 23:12:06 +00:00
10a48bc286
- Skip test_xonsh on platforms we don't carry xonsh.
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=97
2021-03-08 15:08:33 +00:00
29e528db2f
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=96
2021-01-29 22:31:16 +00:00
b53729c5ee
- update to 20.4.0:
...
- 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
2021-01-28 23:24:41 +00:00
435ed8a957
- update to 20.2.0:
...
- Bump pip to ``20.3.1``, setuptools to ``51.0.0`` and wheel to ``0.36.1``
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=93
2020-12-19 10:02:03 +00:00
0280d8cc1c
changelog entry for the update
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=91
2020-12-07 14:07:08 +00:00
55ed82cebc
Accepting request 853544 from home:mcalabkova:branches:devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/853544
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=90
2020-12-07 12:47:13 +00:00
Steve Kowalik
2f63be0b17
- Update to 20.0.33:
...
* Fix ``None`` type error in cygwin if POSIX path in dest - by :user:`danyeaw`. (`#1962 <https://github.com/pypa/virtualenv/issues/1962 >`_)
* Fix Python 3.4 incompatibilities (added back to the CI) - by :user:`gaborbernat`. (`#1963 <https://github.com/pypa/virtualenv/issues/1963 >`_)
* For activation scripts always use UNIX line endings (unless it's BATCH shell related) - by :user:`saytosid`. (`#1818 <https://github.com/pypa/virtualenv/issues/1818 >`_)
* Avoid spawning new windows when doing seed package upgrades in the background on Windows - by :user:`gaborbernat`. (`#1928 <https://github.com/pypa/virtualenv/issues/1928 >`_)
* Fix a bug that reading and writing on the same file may cause race on multiple processes. (`#1938 <https://github.com/pypa/virtualenv/issues/1938 >`_)
* Provide correct path for bash activator in cygwin or msys2 - by :user:`danyeaw`. (`#1940 <https://github.com/pypa/virtualenv/issues/1940 >`_)
* Relax importlib requirement to allow version<3 - by :user:`usamasadiq` (`#1953 <https://github.com/pypa/virtualenv/issues/1953 >`_)
* pth files were not processed on CPython2 if $PYTHONPATH was pointing to site-packages/ - by :user:`navytux`. (`#1959 <https://github.com/pypa/virtualenv/issues/1959 >`_) (`#1960 <https://github.com/pypa/virtualenv/issues/1960 >`_)
* Fix test suite failing if run from system Python - by :user:`gaborbernat`. (`#1882 <https://github.com/pypa/virtualenv/issues/1882 >`_)
* Provide ``setup_logging`` flag to python API so that users can bypass logging handling if their application already
* performs this - by :user:`gaborbernat`. (`#1896 <https://github.com/pypa/virtualenv/issues/1896 >`_)
* Use ``\n`` instead if ``\r\n`` as line separator for report (because Python already performs this transformation
* automatically upon write to the logging pipe) - by :user:`gaborbernat`. (`#1905 <https://github.com/pypa/virtualenv/issues/1905 >`_)
* No longer preimport threading to fix support for `gpython <https://pypi.org/project/pygolang/#gpython >`_ and `gevent <https://www.gevent.org/ >`_ - by :user:`navytux`. (`#1897 <https://github.com/pypa/virtualenv/issues/1897 >`_)
* Bump dependency ``distutils >= 0.3.1`` - by :user:`gaborbernat`. (`#1880 <https://github.com/pypa/virtualenv/issues/1880 >`_)
* Improve periodic update handling:
+ better logging output while running and enable logging on background process call (``_VIRTUALENV_PERIODIC_UPDATE_INLINE`` may be used to debug behaviour inline)
+ fallback to unverified context when querying the PyPi for release date,
+ stop downloading wheels once we reach the embedded version, by :user:`gaborbernat`. (`#1883 <https://github.com/pypa/virtualenv/issues/1883 >`_)
* Do not print error message if the application exists with ``SystemExit(0)`` - by :user:`gaborbernat`. (`#1885 <https://github.com/pypa/virtualenv/issues/1885 >`_)
- Update Requires of python-distlib
- Drop tests.patch, included upstream.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=88
2020-10-08 09:49:22 +00:00
Tomáš Chvátal
e024492b2f
- Add patch from upstream to fix one failing test:
...
* tests.patch
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=86
2020-07-07 09:08:27 +00:00
Tomáš Chvátal
bb9d383653
- Add missing dependencies
...
- Skip online test test_seed_link_via_app_data
- update to 20.0.25:
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=85
2020-07-03 11:10:00 +00:00
56a8b24ca9
- update to 20.0.25:#
...
* Fix that when the ``app-data`` seeders image creation fails the exception is silently ignored. Avoid two virtual environment creations to step on each oth
ers toes by using a lock while creating the base images. By :user:`gaborbernat`. (`#1869 <https://github.com/pypa/virtualenv/issues/1869 >`_)
* Ensure that the seeded packages do not get too much out of date:
+ More details under :ref:`wheels` - by :user:`gaborbernat`. (`#1821 <https://github.com/pypa/virtualenv/issues/1821 >`_)
* Upgrade embed wheel content:
+ - ship wheels for Python ``3.9`` and ``3.10``
+ - upgrade setuptools for Python ``3.5+`` from ``47.1.1`` to ``47.3.1``
* Fix typo in ``setup.cfg`` - by :user:`RowdyHowell`. (`#1857 <https://github.com/pypa/virtualenv/issues/1857 >`_)
* Relax ``importlib.resources`` requirement to also allow version 2 - by :user:`asottile`. (`#1846 <https://github.com/pypa/virtualenv/issues/1846 >`_)
* Upgrade embedded setuptools to ``44.1.1`` for python 2 and ``47.1.1`` for python3.5+ - by :user:`gaborbernat`. (`#1855 <https://github.com/pypa/virtualenv/issues/1855 >`_)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=84
2020-06-24 21:04:52 +00:00
d55c66c8bb
- update to 20.0.21:
...
- Fix virtualenv fails sometimes when run concurrently, ``--clear-app-data`` conflicts with :option:`clear` flag when
abbreviation is turned on. To bypass this while allowing abbreviated flags on the command line we had to move it to
:option:`reset-app-data` - by :user:`gaborbernat`. (`#1824 <https://github.com/pypa/virtualenv/issues/1824 >`_)
- Fix download fails with python 3.4 - by :user:`gaborbernat`. (`#1809 <https://github.com/pypa/virtualenv/issues/1809 >`_)
- Fixes older CPython2 versions use ``_get_makefile_filename`` instead of ``get_makefile_filename`` on ``sysconfig`` - by :user:`ianw`. (`#1810 <https://github.com/pypa/virtualenv/issues/1810 >`_)
- Fix download is ``True`` by default - by :user:`gaborbernat`. (`#1813 <https://github.com/pypa/virtualenv/issues/1813 >`_)
- Fail ``app-data`` seed operation when wheel download fails and better error message - by :user:`gaborbernat`. (`#1814 <https://github.com/pypa/virtualenv/issues/1814 >`_)
- Fix generating a Python 2 environment from Python 3 creates invalid python activator - by :user:`gaborbernat`. (`#1776 <https://github.com/pypa/virtualenv/issues/1776 >`_)
- Fix pinning seed packages via ``app-data`` seeder raised ``Invalid Requirement`` - by :user:`gaborbernat`. (`#1779 <https://github.com/pypa/virtualenv/issues/1779 >`_)
- Do not stop interpreter discovery if we fail to find the system interpreter for a executable during discovery
- by :user:`gaborbernat`. (`#1781 <https://github.com/pypa/virtualenv/issues/1781 >`_)
- On CPython2 POSIX platforms ensure ``syconfig.get_makefile_filename`` exists within the virtual environment (this is used by some c-extension based libraries - e.g. numpy - for building) - by :user:`gaborbernat`. (`#1783 <https://github.com/pypa/virtualenv/issues/1783 >`_)
- Better handling of options :option:`copies` and :option:`symlinks`. Introduce priority of where the option is set
to follow the order: CLI, env var, file, hardcoded. If both set at same level prefers copy over symlink. - by
:user:`gaborbernat`. (`#1784 <https://github.com/pypa/virtualenv/issues/1784 >`_)
- Upgrade pip for Python ``2.7`` and ``3.5+`` from ``20.0.2`` to ``20.1`` - by :user:`gaborbernat`. (`#1793 <https://github.com/pypa/virtualenv/issues/1793 >`_)
- Fix CPython is not discovered from Windows registry, and discover pythons from Windows registry in decreasing order
by version - by :user:`gaborbernat`. (`#1796 <https://github.com/pypa/virtualenv/issues/1796 >`_)
- Fix symlink detection for creators - by :user:`asottile` (`#1803 <https://github.com/pypa/virtualenv/issues/1803 >`_)
- Importing setuptools before cli_run could cause our python information query to fail due to setuptools patching
``distutils.dist.Distribution`` - by :user:`gaborbernat`. (`#1771 <https://github.com/pypa/virtualenv/issues/1771 >`_)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=83
2020-06-02 17:23:14 +00:00
Tomáš Chvátal
add7a3666b
- Update to 20.0.17:
...
* minor fixes
* update of embedded modules
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=81
2020-04-16 09:06:32 +00:00
Tomáš Chvátal
51ea678ea9
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=80
2020-03-19 07:21:58 +00:00
Tomáš Chvátal
d68da6fa55
- Update to 20.0.11:
...
- Allow the test suite to pass even when called with the system Python - to help repackaging of the tool for Linux
distributions - by :user:`gaborbernat`. (`#1721 <https://github.com/pypa/virtualenv/issues/1721 >`_)
- Other minor fixes
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=79
2020-03-19 07:06:16 +00:00
Tomáš Chvátal
d563b0681a
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=78
2020-03-16 08:57:23 +00:00
Tomáš Chvátal
c402f8639f
- Update to 20.0.10:
...
* Complete rewrite and redesign of the virtualenv package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=77
2020-03-13 11:31:08 +00:00
Tomáš Chvátal
595efcefd2
Accepting request 782173 from home:sleep_walker:branches:devel:languages:python
...
- update to 16.7.10
* fix error printing in bailout for Python < 2.7
OBS-URL: https://build.opensuse.org/request/show/782173
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=75
2020-03-06 18:14:19 +00:00
Tomáš Chvátal
5903566e1f
Accepting request 770675 from home:mcalabkova:branches:devel:languages:python
...
- update to 16.7.9
* upgrade setuptools from 41.4.0 to 42.0.2
* fix virtualenv creation when --no-pip argument used.
OBS-URL: https://build.opensuse.org/request/show/770675
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=73
2020-02-06 18:19:43 +00:00
Tomáš Chvátal
db4fbaa216
- Use multibuild to avoid cycles with pytest
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=71
2019-09-17 18:07:53 +00:00
Tomáš Chvátal
33e019dfea
- Update to 16.7.5:
...
* 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
2019-09-16 10:44:26 +00:00
Thomas Bechtold
196b4bfa19
- Version bump to 16.1.0:
...
* Fixed documentation to use pypi.org and correct curl options; :issue:`1042`
* bug fix: ensure prefix is absolute when creating a new virtual
environment :issue:`1208`
* upgrade setuptools from ``39.1.0`` to ``40.5.0``
* upgrade wheel from ``0.31.1`` to ``0.32.2``
* upgrade pip from ``10.0.1`` to ``18.1``
* ``activate.csh`` does not use basename and handles newlines :issue:`1200`
* fix failure to copy on platforms that use lib64 :issue:`1189`
* enable tab-completion in the interactive interpreter by default,
thanks to a new ``sys.__interactivehook__`` on Python 3 :issue:`967`
* suppress warning of usage of the deprecated ``imp`` module :issue:`1238`
* Drop support for Python 2.6.
* Upgrade pip to 10.0.1.
* Upgrade setuptools to 39.1.0.
* Upgrade wheel to 0.31.1.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=68
2019-03-01 15:30:04 +00:00
Thomas Bechtold
796a4543e6
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=67
2019-03-01 07:52:32 +00:00
Thomas Bechtold
752faa8e4f
- Add requires: python-setuptools (bsc#1127328)
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=66
2019-03-01 07:49:01 +00:00
ee3b258502
Accepting request 672297 from home:nicolasbock:branches:devel:languages:python
...
- Version bump to 16.1.0
- Removed patch
- pypa-virtualenv-1189.patch
OBS-URL: https://build.opensuse.org/request/show/672297
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=65
2019-02-07 16:59:32 +00:00
Tomáš Chvátal
df7d030963
Accepting request 627453 from home:matwey:branches:devel:languages:python
...
- Add requires: python-setuptools
> virtualenv-3.6 --help
Traceback (most recent call last):
File "/usr/bin/virtualenv-3.6", line 6, in <module>
from pkg_resources import load_entry_point
ModuleNotFoundError: No module named 'pkg_resources'
OBS-URL: https://build.opensuse.org/request/show/627453
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=63
2018-08-04 15:09:58 +00:00
Tomáš Chvátal
26031a2e22
- Enable tests, skip upstream failing one
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=61
2018-07-22 10:26:39 +00:00
Tomáš Chvátal
b82e1fa9b1
- Fix failure of virtualenv --always-copy (bsc#1102096):
...
* pypa-virtualenv-1189.patch
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=60
2018-07-22 10:06:29 +00:00
Tomáš Chvátal
f19b851a67
Accepting request 624311 from home:mwilck:branches:devel:languages:python
...
- Fix failure of virtualenv --always-copy (bsc#1102096)
OBS-URL: https://build.opensuse.org/request/show/624311
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=59
2018-07-20 18:20:22 +00:00
Thomas Bechtold
9f9d5f8bdd
- Add missing Requires for python (bsc#1081707)
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=57
2018-02-21 08:16:37 +00:00
Jan Matejek
5a20497330
- do not generate HTML documentation for packages that are indirect
...
dependencies of Sphinx
(see docs at https://virtualenv.readthedocs.org/ )
- move uninstall_alternatives to %postun
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=55
2017-03-27 14:14:31 +00:00
Jan Matejek
4883e778af
Accepting request 480672 from home:tbechtold:branches:devel:languages:python
...
- Merge python-virtualenv-doc.spec into python-virtualenv.spec
- update to 15.1.0:
* Support Python 3.6.
* Upgrade setuptools to 28.0.0.
* Upgrade pip to 9.0.1.
* Don't install pre-release versions of pip, setuptools, or wheel from PyPI.
- Switch to singlespec approach
OBS-URL: https://build.opensuse.org/request/show/480672
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=54
2017-03-20 14:42:07 +00:00
188bfb63a3
Accepting request 424646 from home:apersaud:branches:devel:languages:python
...
update to latest version, fix update-alternatives to be the same as for dlp3
OBS-URL: https://build.opensuse.org/request/show/424646
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=52
2016-09-07 08:56:23 +00:00
Denisart Benjamin
eb538859c2
Accepting request 331544 from home:rhafer:branches:devel:languages:python
...
update to version 13.1.2
OBS-URL: https://build.opensuse.org/request/show/331544
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=50
2015-09-17 12:06:02 +00:00
Todd R
ca12212b35
Accepting request 319409 from home:TheBlackCat:branches:devel:languages:python
...
Split documentation into subpackage to avoid dependency loop.
OBS-URL: https://build.opensuse.org/request/show/319409
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=48
2015-07-29 13:14:59 +00:00
Denisart Benjamin
a0207fe1f7
Accepting request 294253 from home:benoit_monin:branches:devel:languages:python
...
update to version 12.0.7
OBS-URL: https://build.opensuse.org/request/show/294253
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=46
2015-04-03 17:27:03 +00:00
Denisart Benjamin
7e575ddc64
Accepting request 260380 from home:Ledest:misc
...
fix bashism in pre script
OBS-URL: https://build.opensuse.org/request/show/260380
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=44
2014-11-14 18:02:50 +00:00
Jan Matejek
1508dc2b2f
Accepting request 249587 from Cloud:OpenStack:Master
...
New upstream release
OBS-URL: https://build.opensuse.org/request/show/249587
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=42
2014-09-16 21:27:26 +00:00
Todd R
a49a06c959
Accepting request 228206 from home:TheBlackCat:branches:devel:languages:python
...
update to 1.11.4
OBS-URL: https://build.opensuse.org/request/show/228206
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=40
2014-03-30 09:20:52 +00:00
Sascha Peilicke
814797ff2a
Accepting request 221797 from home:dirkmueller:branches:devel:languages:python
...
- 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
OBS-URL: https://build.opensuse.org/request/show/221797
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=38
2014-02-12 09:56:12 +00:00
Sascha Peilicke
54c840a7ae
Accepting request 213603 from home:pronik:baamm
...
Remove circular and also unneeded runtime pip dependency.
OBS-URL: https://build.opensuse.org/request/show/213603
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=37
2014-01-14 09:57:04 +00:00
Sascha Peilicke
408583fd71
+ 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.
- 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
2014-01-08 12:27:28 +00:00
Sascha Peilicke
74e110b8df
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=34
2014-01-07 14:15:47 +00:00
Sascha Peilicke
e5cc247c07
- Drop requires on python-pip and python-setuptools, virtualenv ships it's own copies
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=33
2014-01-07 14:04:00 +00:00
Sascha Peilicke
b6b8c37c4f
- 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=32
2014-01-07 13:54:08 +00:00
Sascha Peilicke
613d38b9ba
- 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 - 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
2014-01-07 13:50:50 +00:00
Sascha Peilicke
f726a712ab
- Update to version 1.10.1:
...
+ **New Signing Key** Release 1.10.1 is using a different key than normal with
fingerprint: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
+ Upgraded pip to v1.4.1
+ Upgraded setuptools to v0.9.8
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=29
2013-10-11 08:51:51 +00:00
Sascha Peilicke
d364ce80d9
- 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
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=27
2013-07-29 15:25:13 +00:00