Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-virtualenv-16.1.0-lp152.2.4 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: python3-virtualenv Distribution: openSUSE Leap 15.2
Version: 16.1.0 Vendor: openSUSE
Release: lp152.2.4 Build date: Sun Mar 1 13:09:34 2020
Group: Development/Languages/Python Build host: lamb22
Size: 2180472 Source RPM: python-virtualenv-16.1.0-lp152.2.4.src.rpm
Packager: https://bugs.opensuse.org
Url: http://www.virtualenv.org/
Summary: Virtual Python Environment builder
virtualenv is a tool to create isolated Python environments.
The basic problem being addressed is one of dependencies and versions, and
indirectly permissions. Imagine you have an application that needs version 1
of LibFoo, but another application requires version 2. How can you use both
these applications? If you install everything into
/usr/lib/python2.4/site-packages (or whatever your platforms standard location
is), its easy to end up in a situation where you unintentionally upgrade an
application that shouldnt be upgraded.

Or more generally, what if you want to install an application and leave it be?
If an application works, any change in its libraries or the versions of those
libraries can break the application.

Also, what if you cant install packages into the global site-packages
directory? For instance, on a shared host.

In all these cases, virtualenv can help you. It creates an environment that
has its own installation directories, that doesnt share libraries with other
virtualenv environments (and optionally doesnt use the globally installed
libraries either).

Provides

Requires

License

MIT

Changelog

* Tue Feb 05 2019 Nicolas Bock <nicolas.bock@suse.com>
  - 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.
  - Removed patch
    - pypa-virtualenv-1189.patch
* Sat Aug 04 2018 matwey.kornilov@gmail.com
  - Add requires: python-setuptools (bsc#1127328)
      > 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'
* Sun Jul 22 2018 tchvatal@suse.com
  - Enable tests, skip upstream failing one
* Fri Jul 20 2018 mwilck@suse.com
  - Fix failure of virtualenv --always-copy (bsc#1102096):
    * pypa-virtualenv-1189.patch
* Wed Feb 21 2018 tbechtold@suse.com
  - Add missing Requires for python (bsc#1081707)
* Mon Mar 27 2017 jmatejek@suse.com
  - 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
* Thu Mar 16 2017 tbechtold@suse.com
  - Merge python-virtualenv-doc.spec into python-virtualenv.spec
* Thu Mar 16 2017 tbechtold@suse.com
  - 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
* Tue Mar 08 2016 arun@gmx.de
  - specfile:
    * update copyright
    * fix update-alternatives
  - update to version 15.0.0:
    * Remove the virtualenv-N.N script from the package; this can no
      longer be correctly created from a wheel installation. Resolves
      [#851], #692
    * Remove accidental runtime dependency on pip by extracting
      certificate in the subprocess.
    * Upgrade setuptools 20.2.2.
    * Upgrade pip to 8.1.0.
  - changes from version 14.0.6:
    * Upgrade setuptools to 20.0
    * Upgrade wheel to 0.29.0
    * Fix an error where virtualenv didn’t pass in a working ssl
      certificate for pip, causing “weird” errors related to ssl.
  - changes from version 14.0.5:
    * Homogenize drive letter casing for both prefixes and
      filenames. #858
  - changes from version 14.0.4:
    * Upgrade setuptools to 19.6.2
    * Revert ac4ea65; only correct drive letter case. Fixes #856, #815
  - changes from version 14.0.3:
    * Upgrade setuptools to 19.6.1
  - changes from version 14.0.2:
    * Upgrade setuptools to 19.6
    * Supress any errors from unset on different shells (PR #843)
    * Normalize letter case for prefix path checking. Fixes #837
  - changes from version 14.0.1:
    * Upgrade from pip 8.0.0 to 8.0.2.
    * Fix the default of --(no-)download to default to downloading.
  - changes from version 14.0.0:
    * BACKWARDS INCOMPATIBLE Drop support for Python 3.2.
    * Upgrade setuptools to 19.4
    * Upgrade wheel to 0.26.0
    * Upgrade pip to 8.0.0
    * Upgrade argparse to 1.4.0
    * Added support for python-config script (PR #798)
    * Updated activate.fish (PR #589) (PR #799)
    * Account for a site.pyo correctly in some python implementations
      (PR #759)
    * Properly restore an empty PS1 (#407)
    * Properly remove pydoc when deactivating
    * Remove workaround for very old Mageia / Mandriva linuxes (PR #472)
    * Added a space after virtualenv name in the prompt: (env) $PS1
    * Make sure not to run a –user install when creating the virtualenv
      (PR #803)
    * Remove virtualenv.py’s path from sys.path when executing with a
      new python. Fixes issue #779, #763 (PR #805)
    * Remove use of () in .bat files so Program Files (x86) works #35
    * Download new releases of the preinstalled software from PyPI when
      there are new releases available. This behavior can be disabled
      using --no-download.
    * Make --no-setuptools, --no-pip, and --no-wheel independent of each
      other.
* Wed Sep 16 2015 rhafer@suse.com
  - update to version 13.1.2:
    * Upgrade pip to 7.1.2.
  - additional changes from version 13.1.1
    * Upgrade pip to 7.1.1.
    * Upgrade setuptools to 18.2.
    * Make the activate script safe to use when bash is running with ``-u``.
  - additional changes from version 13.1.0
    * Upgrade pip to 7.1.0
    * Upgrade setuptools to 18.0.1
  - additional changes from version 13.0.3
    * Upgrade pip to 7.0.3
  - additional changes from version 13.0.2
    * Upgrade pip to 7.0.2
    * Upgrade setuptools to 17.0
  - additional changes from version 13.0.1
    * Upgrade pip to 7.0.1
  - additional changes from version 13.0.0
    * Automatically install wheel when creating a new virutalenv. This can be
      disabled by using the ``--no-wheel`` option.
    * Don't trust the current directory as a location to discover files to install
      packages from.
    * Upgrade setuptools to 16.0.
    * Upgrade pip to 7.0.0.
* Wed Jul 29 2015 toddrme2178@gmail.com
  - Split documentation into subpackage to avoid
    dependency loop
* Thu Apr 02 2015 benoit.monin@gmx.fr
  - update to version 12.0.7:
    * Upgrade pip to 6.0.8
  - additional changes from version 12.0.6:
    * Upgrade pip to 6.0.7
    * Upgrade setuptools to 12.0.5
  - additional changes from version 12.0.5:
    * Upgrade pip to 6.0.6
    * Upgrade setuptools to 11.0
  - additional changes from version 12.0.4:
    * Revert the fix to ``-p`` on Debian based pythons as it was
      broken in other situations.
    * Revert several sys.path changes new in 12.0 which were breaking
      virtualenv.
  - additional changes from version 12.0.3:
    * Fix an issue where Debian based Pythons would fail when using
    - p with the host Python.
    * Upgrade pip to 6.0.3
  - additional changes from version 12.0.2:
    * Upgraded pip to 6.0.2
  - additional changes from version 12.0.1:
    * Upgraded pip to 6.0.1
  - additional changes from version 12.0:
    * **PROCESS** Version numbers are now simply ``X.Y`` where the
      leading ``1`` has been dropped.
    * Split up documentation into structured pages
    * Now using pytest framework
    * Correct sys.path ordering for debian, issue #461
    * Correctly throws error on older Pythons, issue #619
    * Allow for empty $PATH, pull #601
    * Don't set prompt if $env:VIRTUAL_ENV_DISABLE_PROMPT is set for
      Powershell
    * Updated setuptools to 7.0
* Sat Nov 08 2014 Led <ledest@gmail.com>
  - fix bashism in pre script

Files

/etc/alternatives/virtualenv
/usr/bin/virtualenv
/usr/bin/virtualenv-3.6
/usr/lib/python3.6/site-packages/__pycache__
/usr/lib/python3.6/site-packages/__pycache__/virtualenv.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/__pycache__/virtualenv.cpython-36.pyc
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/not-zip-safe
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/virtualenv-16.1.0-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/virtualenv.py
/usr/lib/python3.6/site-packages/virtualenv_support
/usr/lib/python3.6/site-packages/virtualenv_support/__init__.py
/usr/lib/python3.6/site-packages/virtualenv_support/__pycache__
/usr/lib/python3.6/site-packages/virtualenv_support/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/virtualenv_support/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/virtualenv_support/pip-18.1-py2.py3-none-any.whl
/usr/lib/python3.6/site-packages/virtualenv_support/setuptools-40.5.0-py2.py3-none-any.whl
/usr/lib/python3.6/site-packages/virtualenv_support/wheel-0.32.2-py2.py3-none-any.whl
/usr/share/doc/packages/python3-virtualenv
/usr/share/doc/packages/python3-virtualenv/README.rst
/usr/share/licenses/python3-virtualenv
/usr/share/licenses/python3-virtualenv/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 11:50:38 2024