Compare commits

...

164 Commits

Author SHA256 Message Date
Dominique Leuenberger
fcbdb689b9 Accepting request 1219344 from devel:languages:python
- update to 20.27.1:
  * Drop 3.7 support as the CI environments no longer allow it running
  * pip to 24.3.1 from 24.2

OBS-URL: https://build.opensuse.org/request/show/1219344
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=70
2024-10-30 16:33:25 +00:00
Ana Guerrero
5be1d2fcda Accepting request 1218086 from devel:languages:python
- update to 20.26.6:
  * Properly quote string placeholders in activation script
    templates to mitigate potential command injection - by
    @y5c4l3. (#2768, in the Python stdlib known as bsc#1232241,
    CVE-2024-9287)
  * Upgrade embedded wheels: setuptools to 75.1.0 from 74.1.2
  * no longer create () output in console during activation of a
    virtualenv by .bat file. (#2728)
- Inject setuptools-wheel and tell the testsuite where to find it.
- update to 20.26.3:
  * Bump embeded wheels
- update to 20.26.2:
  * virtualenv.pyz no longer fails when zipapp path contains a
    symlink
  * Fix bad return code from activate.sh if hashing is disabled
- Update to version 20.26.1:
  * No Linux related change.
- Changes from version 20.26.0:
  * allow builtin discovery to discover specific interpreters
    (e.g. python3.12) given an unspecific spec (e.g. python3) -
    (gh#pypa/virtualenv#2709)
- update update 20.25.3:
  * Python 3.13.0a6 renamed pathmod to parser
  * Upgrade embedded wheels
- Update to 20.25.1
  * Upgrade embedded wheels:
  * Avoid importing contextlib in _virtualenv #2688
- Update to 20.25.0
  * Allow platformdirs v4 by @alex in #2664
  * Upgrade embedded wheels
- Drop fix-tests-hookimpls.patch
- Update requirements
- Update test execution: Remove obsolete hacks, don't build again
  on test flavor. Accomodate changed behavior with bundled
  setuptools on Python 3.12
- Conflict with setuptools_scm for tests gh#pypa/virtualenv#2668
- Add fix-tests-hookimpls.patch to fix tests with latest pytest in
  Factory.
- Update to v20.24.5:
  - Fix brew cannot copy by @gaborbernat in #2640
  - Test with 3.12 rc by @gaborbernat in #2641
  - Upgrade setuptools by @gaborbernat in #2642
  - GitHub Actions: Add PyPy 3.10 to testing by @cclauss in #2638
- 20.24.4:
  - Fix typo found by codespell by @DimitriPapadopoulos in #2624
  - Updating extend.rst typo by @sagardesai1 in #2626
- 20.24.3:
  - Update compatibility docs by @jugmac00 in #2618
  - fix ResourceWarning on process exit (#2472) by @sigma67 in #2617
  - added scripts in tasks directory to sdist on build (#2610) by @sigma67 in #2620
  - Bump wheel by @gaborbernat in #2622
- 20.24.2:
  - Bump pip and wheel by @gaborbernat in #2614
- 20.24.1:
  - Upgrade pip by @arielkirkwood in #2611
- 20.24.0:
  - Fix the CI by @gaborbernat in #2593
  - Quickstart guide by @AlvesJorge in #2599
  - Updated CLI documentation with config file name by @nathanczh in #2602
  - Exclude dependabot and pre-commit ci from release notes by @gaborbernat in #2603
  - Export VIRTUAL_ENV_PROMPT in activation scripts (#2194) by @jimporter in #2606
  - Upgrade setuptools by @gaborbernat in #2607
- Update to v20.23.1
  * update and simplify nushell activation script
- Add missing BuildRequires on time-machine
- Update to v20.23.0:
  # Features - 20.23.0
  * Do not install wheel and setuptools seed packages for Python
    3.12+. To restore the old behaviour use:
    - for wheel use VIRTUALENV_WHEEL=bundle environment variable or
      --wheel=bundle CLI flag,
    - for setuptools use VIRTUALENV_SETUPTOOLS=bundle environment
      variable or --setuptools=bundle CLI flag.
    By @chrysle. (#2487)
  * 3.12 support - by @gaborbernat. (#2558)
  # Bugfixes - 20.23.0
  * Prevent PermissionError when using venv creator on systems that
    deliver files without user write permission - by @kulikjak.
    (#2543)
  * Upgrade setuptools to 67.7.2 from 67.6.1 and pip to 23.1.2 from
    23.1 - by @szleb. (#2560)
- Update to v20.22.0
  * Drop support for creating Python <=3.6 (including 2) interpreters.
    Removed pip of 20.3.4, 21.3.1; wheel of 0.37.1; setuptools of 59.6.0, 44.1.1, 50.3.2
- from v20.21.1
  * Add tox.ini to sdist
  * Move the use of 'let' in nushell to ensure compatibility with future
    releases of nushell, where 'let' no longer assumes that its initializer
    is a full expressions.
  * The nushell command 'str collect' has been superseded by the
    'str join' command. The activate.nu script has been updated to
    reflect this change.
  * Upgrade embedded wheels:
    + wheel to 0.40.0 from 0.38.4
    + setuptools to 67.6.1 from 67.4.0
    + pip to 23.1 from 23.0.1
- from v20.21.0
  * Make closure syntax explicitly starts with {||.
  * Add print command to nushell print_prompt to ensure compatibility with
    future release of nushell, where intermediate commands no longer print
    their result to stdout.
  * Do not assume the default encoding.
  * Make ReentrantFileLock thread-safe and, thereby, fix race conditio
    in virtualenv.cli_run - by :user:`radoering`.
- from v20.20.0
  * Change environment variable existence check in Nushell activation
    script to not use deprecated command.
  * Discover CPython implementations distributed on Windows by any organization.
  * Upgrade embedded setuptools to 67.4.0 from 67.1.0 and pip to 23.0.1 from 23.0
- from v20.19.0
  * Allow platformdirs version 3
- from v20.18.0
  * Drop 3.6 runtime support (can still create 2.7+)
  * Fix broken prompt in Nushell when activating virtual environment.
  * Bump embedded pip to 23.0 and setuptools to 67.1.
- from v20.17.1
  * A py or python spec means any Python rather than CPython.
  * Make activate.nu respect VIRTUAL_ENV_DISABLE_PROMPT
    and not set the prompt if reqeusted.
- from v20.17.0
  * Change Nushell activation script to be a module meant to be
    activated as an overlay.
  * Update operator used in Nushell activation script to be
    compatible with future versions.
  * Do not use deprecated API from importlib.resources on Python 3.10 or later.
  * Upgrade embedded setuptools to 65.6.3 from 65.5.1.
- add sle15_python_module_pythons (jsc#PED-68)
- Make calling of %{sle15modernpython} optional.
- python-six is not required
- Add python_module devel to BuildRequires in the test flavor, since
  the test suite checks if the include path exists.
- Update to version 20.16.7
  * Use parent directory of python executable for pyvenv.cfg “home” value per PEP 405 - by @vfazio. (#2440)
  * In POSIX virtual environments, try alternate binary names if sys._base_executable does not exist - by @vfazio. (#2442)
  * Upgrade embedded wheel to 0.38.4 and pip to 22.3.1 from 22.3 and setuptools to 65.5.1 from 65.5.0
- Update to 20.16.6:
  - Drop unneeded shims for PyPy3 directory structure
  - Fix selected scheme on debian derivatives for python 3.10
    when python3-distutils is not installed or the venv scheme is
    not avaiable
  - Allow the test suite to pass even with the original C shell
    (rather than tcsh)
  - Fix fallback handling of downloading wheels for bundled
    packages
  - Upgrade embedded setuptools to 65.5.0 from 65.3.0 and pip to
    22.3 from 22.2.2
- Update to vesion 20.16.5:
  - Do not turn echo off for subsequent commands in batch
    activators (activate.bat and deactivate.bat)
  - Bump embed setuptools to 65.3
  - Upgrade embedded pip to 22.2.2 from 22.2.1 and setuptools to
    63.4.1 from 63.2.0
  - Bump embeded pip from 22.2 to 22.2.1
  - Update Nushell activation scripts to version 0.67
  - Drop support for running under Python 2 (still can generate
    Python 2 environments)
  - Upgrade embedded pip to 22.2 from 22.1.2 and setuptools to
    63.2.0 from 62.6.0
- update to version 20.15.1:
  * Bugfixes
    + Fix the incorrect operation when setuptools plugins output
      something into stdout. (#2335)
    + CPython3Windows creator ignores missing DLLs dir. (#2368)
- changes from version 20.15.0:
  * Features
    + Support for Windows embeddable Python package: includes
      python<VERSION>.zip in the creator sources - by
      @reksarka. (#1774)
  * Bugfixes
    + Upgrade embedded setuptools to 62.3.3 from 62.6.0 and pip to
      22.1.2 from 22.0.4 - by @gaborbernat. (#2348)
    + Use shlex.quote instead of deprecated pipes.quote in Python 3 -
      by @frenzymadness. (#2351)
    + Fix Windows PyPy 3.6 - by @reksarka. (#2363)
- update to version 20.14.1:
  * Features
    + Support for creating a virtual environment from a Python 2.7
      framework on macOS 12 - by @nickhutchinson. (#2284)
  * Bugfixes
    + Upgrade embedded setuptools to 62.1.0 from 61.0.0 - by
      @gaborbernat. (#2327)
- changes from version 20.14.0:
  * Features
    + Support Nushell activation scripts with nu version 0.60 - by
      @kubouch. (#2321)
  * Bugfixes
    + Upgrade embedded setuptools to 61.0.0 from 60.10.0 - by
      @gaborbernat. (#2322)
- changes from version 20.13.4:
  * Bugfixes
    + Improve performance of python startup inside created virtualenvs
      - by @asottile. (#2317)
    + Upgrade embedded setuptools to 60.10.0 from 60.9.3 - by
      @gaborbernat. (#2320)
- update to version 20.13.3:
  * Avoid symlinking the contents of /usr into PyPy3.8+ virtualenvs -
    by @stefanor. (#2310)
  * Bump embed pip from 22.0.3 to 22.0.4 - by @gaborbernat. (#2311)
- changes from version 20.13.2:
  * Upgrade embedded setuptools to 60.9.3 from 60.6.0 - by
    @gaborbernat. (#2306)
- update to 20.13.1:
  * fix “execv() arg 2 must contain only strings” error on M1 MacOS
  * Ugrade embedded setuptools to 60.5.0 from 60.2.0
  * Upgrade embedded pip to 22.0.3 and setuptools to 60.6.0
- specfile:
  * update copyright year
- update to version 20.13.0:
  * Features
    + Add downloaded wheel information in the relevant JSON embed file
      to prevent additional downloads of the same wheel. - by
      @mayeut. (#2268)
  * Bugfixes
    + Fix AttributeError: 'bool' object has no attribute 'error' when
      creating a Python 2.x virtualenv on macOS - by moreati. (#2269)
    + Fix PermissionError: [Errno 1] Operation not permitted when
      creating a Python 2.x virtualenv on macOS/arm64 - by
      moreati. (#2271)
- changes from version 20.12.1:
  * Bugfixes
    + Try using previous updates of pip, setuptools & wheel when
      inside an update grace period rather than always falling back to
      embedded wheels - by @mayeut. (#2265)
    + New patch versions of pip, setuptools & wheel are now returned
      in the expected timeframe. - by @mayeut. (#2266)
    + Manual upgrades of pip, setuptools & wheel are not discarded by
      a periodic update - by @mayeut. (#2267)
- changes from version 20.12.0:
  * Features
    + Sign the python2 exe on Darwin arm64 - by @tmspicer. (#2233)
  * Bugfixes
    + Fix --download option - by @mayeut. (#2120)
    + Ugrade embedded setuptools to 60.2.0 from 60.1.1 - by
      @gaborbernat. (#2263)
- changes from version 20.11.2:
  * Bugfixes
    + Fix installation of pinned versions of pip, setuptools & wheel -
      by @mayeut. (#2203)
- changes from version 20.11.1:
  * Bugfixes
    + Bump embed setuptools to 60.1.1 from 60.1.0 - by
      @gaborbernat. (#2258)
- changes from version 20.11.0:
  * Features
    + Avoid deprecation warning from py-filelock argument - by
      @ofek. (#2237)
    + Upgrade embedded setuptools to 61.1.0 from 58.3.0 - by
      @gaborbernat. (#2240)
    + Drop the runtime dependency of backports.entry-points-selectable
      - by @hroncok. (#2246)
    + Fish: PATH variables should not be quoted when being set - by
      @hroncok. (#2248)
- update to 20.10.0:
  * Special-case ``--prompt .`` to the name of the current directory
  * Add libffi-8.dll to pypy windows
  * Fixed path collision that could lead to a PermissionError or writing to system
    directories when using PyPy3.8
  * Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4``
  * Remove stray closing parenthesis in activate.bat
- Update to 20.8.1
  * Fixed a bug where while creating a venv on top of an existing
    one, without cleaning, when seeded wheel version mismatch
    occurred, multiple .dist-info directories may be present,
    confounding entrypoint discovery
  * upgrade embedded setuptools to 58.1.0 and pip to 21.2.4
- Release to 20.8.0
  * Add nushell activation script
- Release 2.7.1
  * Fix unpacking dictionary items in PythonInfo.install_path
    (#2165)
- Fix and activate the test suite
- Update importlib* dependencies for older pythons
- Disable the python2 build because there is no
  python2-platformdirs on any distribution
- Add missing Requires on two modules.
- Drop no longer required appdirs Requires.
- Shift new BuildRequires to :test to avoid cycles.
- 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
- Actually switch off all activation tests, so we can shed all those
  dependencies.
- Skip test_xonsh on platforms we don't carry xonsh.
- update to 20.2.0:
  - Bump pip to ``20.3.1``, setuptools to ``51.0.0`` and wheel to ``0.36.1``
- Require xonsh for testing of all Python 3 flavors in Tumbleweed
  gh#openSUSE/python-rpm-macros#66
- Update to 20.2.1
  * Optionally skip VCS ignore directive for entire virtualenv directory
  * Add ``--read-only-app-data`` option to allow for creation based on
    an existing app data cache which is non-writable
  * The python specification can now take one or more values, first found
    is used to create the virtual environment
- 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.
- Add patch from upstream to fix one failing test:
  * tests.patch
- Add missing dependencies
- Skip online test test_seed_link_via_app_data
- 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>`_)
- 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>`_)
- Update to 20.0.17:
  * minor fixes
  * update of embedded modules
- 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
- Update to 20.0.10:
  * Complete rewrite and redesign of the virtualenv package
- update to 16.7.10
  * fix error printing in bailout for Python < 2.7
- update to 16.7.9
  * upgrade setuptools from 41.4.0 to 42.0.2
  * fix virtualenv creation when --no-pip argument used.
- Use multibuild to avoid cycles with pytest
- 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)
- 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
- 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'
- Enable tests, skip upstream failing one
- Fix failure of virtualenv --always-copy (bsc#1102096):
  * pypa-virtualenv-1189.patch
- Add missing Requires for python (bsc#1081707)
- 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
- 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
- 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.
- 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.
- Split documentation into subpackage to avoid
  dependency loop
- 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
- fix bashism in pre script
- update to version 1.11.6
  * Updated setuptools to 3.6
  * Updated pip to 1.5.6
  * Updated documentation to use https://virtualenv.pypa.io/
- update to 1.11.4
  * Updated pip to 1.5.4
- update to 1.11.3
  * Updated setuptools to 2.2
  * Updated pip to 1.5.3
- 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
- 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
- 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
- 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)
- Update to 1.9.1:
  * 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).
- Update to 1.8.4:
  - 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.
- Update to 1.8.3:
  - 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).
- Update to 1.8.2:
  * Updated the included pip version to 1.2.1 to fix regressions
    introduced there in 1.2.
- Update to 1.8.1:
  * Fixed distribute version used with --never-download. Thanks
    michr for report and patch.
  * Fix creating Python 3.3 based virtualenvs by unsetting the
    __PYVENV_LAUNCHER__ environment variable in subprocesses.
- Update to 1.8:
  - 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.
- Update to 1.7.2:
  - Updated to distribute 0.6.27.
  - Fix activate.fish on OS X. Fixes #8. Thanks David Schoonover.
  - Create a virtualenv-x.x script with the Python version when
    installing, so virtualenv for multiple Python versions can be
    installed to the same script location. Thanks Miki Tebeka.
  - Restored ability to create a virtualenv with a path longer than
    78 characters, without breaking creation of virtualenvs with
    non-ASCII paths. Thanks, Bradley Ayers.
  - Added ability to create virtualenvs without having installed
    Apple's developers tools (using an own implementation of
    install_name_tool). Thanks Mike Hommey.
  - Fixed PyPy and Jython support on Windows. Thanks Konstantin
    Zemlyak.
  - Added pydoc script to ease use. Thanks Marc Abramowitz. Fixes
    #149.
  - Fixed creating a bootstrap script on Python 3. Thanks Raul
    Leal. Fixes #280.
  - Fixed inconsistency when having set the PYTHONDONTWRITEBYTECODE
    env var with the --distribute option or the
    VIRTUALENV_USE_DISTRIBUTE env var. VIRTUALENV_USE_DISTRIBUTE
    is now considered again as a legacy alias.
- Update to 1.7.1.2:
  * Fixed minor issue in --relocatable. Thanks, Cap Petschulat.
- Aditional changes from 1.7.1.1:
  * Bumped the version string in virtualenv.py up, too.
  * Fixed rST rendering bug of long description.
- Update to 1.7:
  - Updated embedded Distribute release to 0.6.24. Thanks Alex
    Grönholm.
  - Made --no-site-packages behavior the default behavior. The
    --no-site-packages flag is still permitted, but displays a
    warning when used. Thanks Chris McDonough.
  - New flag: --system-site-packages; this flag should be passed
    to get the previous default global-site-package-including
    behavior back.
  - Added ability to set command options as environment variables
    and options in a virtualenv.ini file.
  - Fixed various encoding related issues with paths. Thanks
    Gunnlaugur Thor Briem.
  - Made virtualenv.py script executable.
- Update to 1.6.4:
  * Restored ability to run on Python 2.4, too.
- Spec file cleanup:
  * Remove she-bang line from non-executable script (rpmlint warning)
  * Remove in-tree libraries (setuptools, pip & distribute)
  * Don't package PKG-INFO but AUTHORS.txt and LICENSE.txt
- Update to 1.6.3:
  * Restored ability to run on Python < 2.7.
- Aditional changes from 1.6.2:
  * Updated embedded distribute release to 0.6.19.
  * Updated embedded pip release to 1.0.2.
  * Fixed #141 - Be smarter about finding pkg_resources when using the
    non-default Python intepreter (by using the -p option).
  * Fixed #112 - Fixed path in docs.
  * Fixed #109 - Corrected doctests of a Logger method.
  * Fixed #118 - Fixed creating virtualenvs on platforms that use the
    "posix_local" install scheme, such as Ubuntu with Python 2.7.
  * Add missing library to Python 3 virtualenvs (_dummy_thread).
- Update to 1.6.1:
  * Start to use git-flow.
  * Added support for PyPy 1.5
  * Fixed #121 -- added sanity-checking of the -p argument. Thanks Paul Nasrat.
  * Added progress meter for pip installation as well as setuptools. Thanks Ethan
    Jucovy.
  * Added --never-download and --search-dir options. Thanks Ethan Jucovy.
- Update to 1.6:
  * Added Python 3 support! Huge thanks to Vinay Sajip and Vitaly Babiy.
  * Fixed creation of virtualenvs on Mac OS X when standard library modules
    (readline) are installed outside the standard library.
  * Updated bundled pip to 1.0.
- Regenerate spec file with py2pack.
- Update to 1.5.1:
  - Added ``_weakrefset`` requirement for Python 2.7.1.
  - Fixed Windows regression in 1.5.
- Update to 1.5:
  - Include pip 0.8.1.
  - Add support for PyPy.
  - Uses a proper temporary dir when installing environment requirements.
  - Add --prompt option to be able to override the default prompt prefix.
  - Fix an issue with --relocatable on Windows.
  - Fix issue with installing the wrong version of distribute.
  - Add fish and csh activate scripts.
- Update to 1.4.9:
  * Include pip 0.7.2.
- Update to 1.4.8:
  * Fix for Mac OS X Framework builds that use
    ``--universal-archs=intel``
  * Fix ``activate_this.py`` on Windows.
  * Allow ``$PYTHONHOME`` to be set, so long as you use ``source
    bin/activate`` it will get unset; if you leave it set and do not
    activate the environment it will still break the environment.
  * Include pip 0.7.1.
- Update to 1.4.7:
  * Include pip 0.7.
- Update to 1.4.6
  * Allow ``activate.sh`` to skip updating the prompt (by setting
    ``$VIRTUAL_ENV_DISABLE_PROMPT``).
- Spec file cleaned with spec-cleaner.
- Added python-setuptools as Requires;
- Generated changes file from spec file;
- Removed old tarballs;
- Update to 1.4.5
  - Include pip 0.6.3
- Aditional changes from 1.4.4:
  - Include pip 0.6.2 and Distribute 0.6.10
  - Create the virtualenv script even when Setuptools isn’t installed
  - Fix problem with virtualenv --relocate when bin/ has subdirectories
    (e.g., bin/.svn/); from Alan Franzoni.
  - If you set $VIRTUALENV_USE_DISTRIBUTE then virtualenv will use
    Distribute by default (so you don’t have to remember to use --distribute).
- 1.4.3
 * Include pip 0.6.1
- Update to 1.4
  * Updated setuptools to 0.6c11
  * Added the --distribute option
  * Fixed packaging problem of support-files
- Update to 1.3.2
  - Remove the [install] prefix = ... setting from virtualenv distutils.cfg as has been causing problems for a lot of people, in rather obscure ways.
  - If you use a boot script it will attempt to import virtualenv and find a pre-downloaded Setuptools egg using that.
  - Added platform-specific paths, like /usr/lib/pythonX.Y/plat-linux2
- Initial import and build - 1.3

OBS-URL: https://build.opensuse.org/request/show/1218086
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=69
2024-10-25 17:18:57 +00:00
62e233313b - update to 20.26.6:
* Properly quote string placeholders in activation script
    templates to mitigate potential command injection - by
    @y5c4l3. (#2768, in the Python stdlib known as bsc#1232241,
    CVE-2024-9287)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=155
2024-10-24 15:39:06 +00:00
85eca6f885 - update teo 20.26.6:
* Properly quote string placeholders in activation script templates
    to mitigate potential command injection - by @y5c4l3. (#2768)
  * Upgrade embedded wheels: setuptools to 75.1.0 from 74.1.2
  * no longer create () output in console during activation of a
    virtualenv by .bat file. (#2728)
- Inject setuptools-wheel and tell the testsuite where to find it.
  * Bump embeded wheels

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=154
2024-10-17 15:16:47 +00:00
Ana Guerrero
0b611fe108 Accepting request 1208017 from devel:languages:python
- Inject setuptools-wheel and tell the testsuite where to find it.

OBS-URL: https://build.opensuse.org/request/show/1208017
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=68
2024-10-16 21:35:57 +00:00
Steve Kowalik
be4602df96 - Inject setuptools-wheel and tell the testsuite where to find it.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=152
2024-10-15 05:34:43 +00:00
Dominique Leuenberger
8dbca57c36 Accepting request 1183986 from devel:languages:python
- update to 20.26.3:
  * Bump embeded wheels

OBS-URL: https://build.opensuse.org/request/show/1183986
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=67
2024-07-01 09:19:18 +00:00
4e4a7432a5 - update to 20.26.3:
* Bump embeded wheels

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=150
2024-06-29 12:44:18 +00:00
Ana Guerrero
72b23e27e7 Accepting request 1179659 from devel:languages:python
- update to 20.26.2:
  * virtualenv.pyz no longer fails when zipapp path contains a
    symlink
  * Fix bad return code from activate.sh if hashing is disabled

OBS-URL: https://build.opensuse.org/request/show/1179659
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=66
2024-06-11 16:27:12 +00:00
30ba7f908a - update to 20.26.2:
* virtualenv.pyz no longer fails when zipapp path contains a
    symlink
  * Fix bad return code from activate.sh if hashing is disabled

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=148
2024-06-10 08:59:08 +00:00
Ana Guerrero
edc34b5ff2 Accepting request 1173647 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1173647
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=65
2024-05-14 11:37:26 +00:00
4b8abf9d75 Accepting request 1173492 from home:badshah400:branches:devel:languages:python
Update to version 20.26.1:

OBS-URL: https://build.opensuse.org/request/show/1173492
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=146
2024-05-13 12:11:40 +00:00
Ana Guerrero
17846089c3 Accepting request 1169321 from devel:languages:python
- update update 20.25.3:
  * Python 3.13.0a6 renamed pathmod to parser
  * Upgrade embedded wheels

- Add missing BuildRequires on time-machine
  the test suite checks if the include path exists.
- Add missing Requires on two modules.
  * Add ``--read-only-app-data`` option to allow for creation based on
  * The python specification can now take one or more values, first found
    Distribute again and works for Python 2 and 3 with one codebase. The

OBS-URL: https://build.opensuse.org/request/show/1169321
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=64
2024-04-23 16:54:49 +00:00
c4e5e14b76 - update update 20.25.3:
* Python 3.13.0a6 renamed pathmod to parser
  * Upgrade embedded wheels
- Add missing BuildRequires on time-machine
  the test suite checks if the include path exists.
- Add missing Requires on two modules.
  * Add ``--read-only-app-data`` option to allow for creation based on
  * The python specification can now take one or more values, first found
    Distribute again and works for Python 2 and 3 with one codebase. The

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=144
2024-04-20 07:43:12 +00:00
Dominique Leuenberger
1552d58814 Accepting request 1152923 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1152923
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=63
2024-02-29 20:49:06 +00:00
a1ccf1fe78 Accepting request 1152468 from home:bnavigator:branches:devel:languages:python
- Update to 20.25.1
  * Upgrade embedded wheels:
  * Avoid importing contextlib in _virtualenv #2688

OBS-URL: https://build.opensuse.org/request/show/1152468
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=142
2024-02-28 12:56:17 +00:00
Ana Guerrero
4dcb1ef78e Accepting request 1137418 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1137418
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=62
2024-01-08 22:44:02 +00:00
f90d6d3533 Accepting request 1137110 from home:bnavigator:branches:devel:languages:python
- Update to 20.25.0
  * Allow platformdirs v4 by @alex in #2664
  * Upgrade embedded wheels
- Drop fix-tests-hookimpls.patch
- Update requirements
- Update test execution: Remove obsolete hacks, don't build again
  on test flavor. Accomodate changed behavior with bundled
  setuptools on Python 3.12
- Conflict with setuptools_scm for tests gh#pypa/virtualenv#2668

OBS-URL: https://build.opensuse.org/request/show/1137110
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=140
2024-01-07 19:11:55 +00:00
Ana Guerrero
50b5a29056 Accepting request 1114909 from devel:languages:python
- Add fix-tests-hookimpls.patch to fix tests with latest pytest in
  Factory.
- Update to v20.24.5:
  - Fix brew cannot copy by @gaborbernat in #2640
  - Test with 3.12 rc by @gaborbernat in #2641
  - Upgrade setuptools by @gaborbernat in #2642
  - GitHub Actions: Add PyPy 3.10 to testing by @cclauss in #2638
- 20.24.4:
  - Fix typo found by codespell by @DimitriPapadopoulos in #2624
  - Updating extend.rst typo by @sagardesai1 in #2626
- 20.24.3:
  - Update compatibility docs by @jugmac00 in #2618
  - fix ResourceWarning on process exit (#2472) by @sigma67 in #2617
  - added scripts in tasks directory to sdist on build (#2610) by @sigma67 in #2620
  - Bump wheel by @gaborbernat in #2622
- 20.24.2:
  - Bump pip and wheel by @gaborbernat in #2614
- 20.24.1:
  - Upgrade pip by @arielkirkwood in #2611
- 20.24.0:
  - Fix the CI by @gaborbernat in #2593
  - Quickstart guide by @AlvesJorge in #2599
  - Updated CLI documentation with config file name by @nathanczh in #2602
  - Exclude dependabot and pre-commit ci from release notes by @gaborbernat in #2603
  - Export VIRTUAL_ENV_PROMPT in activation scripts (#2194) by @jimporter in #2606
  - Upgrade setuptools by @gaborbernat in #2607

OBS-URL: https://build.opensuse.org/request/show/1114909
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=61
2023-10-04 20:30:31 +00:00
ca99656e79 - Add fix-tests-hookimpls.patch to fix tests with latest pytest in
Factory.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=138
2023-10-03 07:10:47 +00:00
01cc60728c - Update to v20.24.5:
- Fix brew cannot copy by @gaborbernat in #2640
  - Test with 3.12 rc by @gaborbernat in #2641
  - Upgrade setuptools by @gaborbernat in #2642
  - GitHub Actions: Add PyPy 3.10 to testing by @cclauss in #2638
- 20.24.4:
  - Fix typo found by codespell by @DimitriPapadopoulos in #2624
  - Updating extend.rst typo by @sagardesai1 in #2626
- 20.24.3:
  - Update compatibility docs by @jugmac00 in #2618
  - fix ResourceWarning on process exit (#2472) by @sigma67 in #2617
  - added scripts in tasks directory to sdist on build (#2610) by @sigma67 in #2620
  - Bump wheel by @gaborbernat in #2622
- 20.24.2:
  - Bump pip and wheel by @gaborbernat in #2614
- 20.24.1:
  - Upgrade pip by @arielkirkwood in #2611
- 20.24.0:
  - Fix the CI by @gaborbernat in #2593
  - Quickstart guide by @AlvesJorge in #2599
  - Updated CLI documentation with config file name by @nathanczh in #2602
  - Exclude dependabot and pre-commit ci from release notes by @gaborbernat in #2603
  - Export VIRTUAL_ENV_PROMPT in activation scripts (#2194) by @jimporter in #2606
  - Upgrade setuptools by @gaborbernat in #2607
- 20.23.1:
  - Bump pypa/gh-action-pypi-publish from 1.8.5 to 1.8.6 by @dependabot in #2566
  - feat:  update and simplify nushell activation by @melMass in #2572
  - Fix deprecation warning by @jugmac00 in #2575
  - Replace unmaintained pytest-freezegun by @jugmac00 in #2576
  - Update cli_interface.rst by @uberFoo in #2586

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=137
2023-10-03 06:46:26 +00:00
Dominique Leuenberger
f3a9176be3 Accepting request 1096211 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1096211
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=60
2023-07-01 21:18:00 +00:00
3403a890c5 Accepting request 1096168 from home:mcalabkova:branches:devel:languages:python
- Update to v20.23.1
  * update and simplify nushell activation script

OBS-URL: https://build.opensuse.org/request/show/1096168
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=135
2023-06-30 21:08:04 +00:00
Dominique Leuenberger
22cc630e25 Accepting request 1088293 from devel:languages:python
- Add missing BuildRequires on time-machine 

- Update to v20.23.0:
  # Features - 20.23.0
  * Do not install wheel and setuptools seed packages for Python
    3.12+. To restore the old behaviour use:
    - for wheel use VIRTUALENV_WHEEL=bundle environment variable or
      --wheel=bundle CLI flag,
    - for setuptools use VIRTUALENV_SETUPTOOLS=bundle environment
      variable or --setuptools=bundle CLI flag.
    By @chrysle. (#2487)
  * 3.12 support - by @gaborbernat. (#2558)
  # Bugfixes - 20.23.0
  * Prevent PermissionError when using venv creator on systems that
    deliver files without user write permission - by @kulikjak.
    (#2543)
  * Upgrade setuptools to 67.7.2 from 67.6.1 and pip to 23.1.2 from
    23.1 - by @szleb. (#2560)

OBS-URL: https://build.opensuse.org/request/show/1088293
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=59
2023-05-30 20:02:01 +00:00
Steve Kowalik
d5421a9c74 - Add missing BuildRequires on time-machine
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=133
2023-05-22 08:33:24 +00:00
0bdaaa1d95 - Update to v20.23.0:
# Features - 20.23.0
  * Do not install wheel and setuptools seed packages for Python
    3.12+. To restore the old behaviour use:
    - for wheel use VIRTUALENV_WHEEL=bundle environment variable or
      --wheel=bundle CLI flag,
    - for setuptools use VIRTUALENV_SETUPTOOLS=bundle environment
      variable or --setuptools=bundle CLI flag.
    By @chrysle. (#2487)
  * 3.12 support - by @gaborbernat. (#2558)
  # Bugfixes - 20.23.0
  * Prevent PermissionError when using venv creator on systems that
    deliver files without user write permission - by @kulikjak.
    (#2543)
  * Upgrade setuptools to 67.7.2 from 67.6.1 and pip to 23.1.2 from
    23.1 - by @szleb. (#2560)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=132
2023-05-12 09:14:27 +00:00
Dominique Leuenberger
51cd84c20c Accepting request 1083341 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1083341
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=58
2023-05-03 10:56:16 +00:00
3dc1de39b7 Accepting request 1082837 from home:jayvdb:branches:devel:languages:python
- Update to v20.22.0

deps on https://build.opensuse.org/request/show/1082836

OBS-URL: https://build.opensuse.org/request/show/1082837
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=130
2023-04-27 21:50:45 +00:00
Dominique Leuenberger
c7bc4c603d Accepting request 1081729 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1081729
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=57
2023-04-22 19:58:13 +00:00
ed742ad74b Accepting request 1081690 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1081690
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=128
2023-04-21 13:28:34 +00:00
Dominique Leuenberger
530d215681 Accepting request 1072755 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1072755
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=56
2023-03-19 15:16:34 +00:00
ecbb06f3df Accepting request 1072651 from home:pgajdos:python
- python-six is not required

OBS-URL: https://build.opensuse.org/request/show/1072651
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=126
2023-03-17 21:50:59 +00:00
Dominique Leuenberger
06e79b1330 Accepting request 1057689 from devel:languages:python
- Add python_module devel to BuildRequires in the test flavor, since
  the test suite checks if the include path exists.

OBS-URL: https://build.opensuse.org/request/show/1057689
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=55
2023-01-11 16:14:19 +00:00
Steve Kowalik
b9c2fd856c - Add python_module devel to BuildRequires in the test flavor, since
the test suite checks if the include path exists.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=124
2023-01-11 03:48:59 +00:00
Dominique Leuenberger
e6161d2292 Accepting request 1039742 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1039742
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=54
2022-12-04 13:57:45 +00:00
adcffc6192 Accepting request 1039702 from home:yarunachalam:branches:devel:languages:python
- Update to version 20.16.7
  * Use parent directory of python executable for pyvenv.cfg “home” value per PEP 405 - by @vfazio. (#2440)
  * In POSIX virtual environments, try alternate binary names if sys._base_executable does not exist - by @vfazio. (#2442)
  * Upgrade embedded wheel to 0.38.4 and pip to 22.3.1 from 22.3 and setuptools to 65.5.1 from 65.5.0

OBS-URL: https://build.opensuse.org/request/show/1039702
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=122
2022-12-03 07:30:22 +00:00
Dominique Leuenberger
593eb3f3a3 Accepting request 1031181 from devel:languages:python
- Update to 20.16.6:
  - Drop unneeded shims for PyPy3 directory structure
  - Fix selected scheme on debian derivatives for python 3.10
    when python3-distutils is not installed or the venv scheme is
    not avaiable
  - Allow the test suite to pass even with the original C shell
    (rather than tcsh)
  - Fix fallback handling of downloading wheels for bundled
    packages
  - Upgrade embedded setuptools to 65.5.0 from 65.3.0 and pip to
    22.3 from 22.2.2

OBS-URL: https://build.opensuse.org/request/show/1031181
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=53
2022-10-27 11:54:03 +00:00
c417970071 - Update to 20.16.6:
- Drop unneeded shims for PyPy3 directory structure
  - Fix selected scheme on debian derivatives for python 3.10
    when python3-distutils is not installed or the venv scheme is
    not avaiable
  - Allow the test suite to pass even with the original C shell
    (rather than tcsh)
  - Fix fallback handling of downloading wheels for bundled
    packages
  - Upgrade embedded setuptools to 65.5.0 from 65.3.0 and pip to
    22.3 from 22.2.2

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=120
2022-10-25 17:59:17 +00:00
Dominique Leuenberger
4a8a522a68 Accepting request 1009349 from devel:languages:python
- Update to vesion 20.16.5:
  - Do not turn echo off for subsequent commands in batch
    activators (activate.bat and deactivate.bat)
  - Bump embed setuptools to 65.3
  - Upgrade embedded pip to 22.2.2 from 22.2.1 and setuptools to
    63.4.1 from 63.2.0
  - Bump embeded pip from 22.2 to 22.2.1
  - Update Nushell activation scripts to version 0.67
  - Drop support for running under Python 2 (still can generate
    Python 2 environments)
  - Upgrade embedded pip to 22.2 from 22.1.2 and setuptools to
    63.2.0 from 62.6.0

OBS-URL: https://build.opensuse.org/request/show/1009349
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=52
2022-10-13 13:39:35 +00:00
277328d8d5 Fix tests
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=118
2022-10-10 11:33:04 +00:00
d3d68a38d4 - Update to vesion 20.16.5:
- Do not turn echo off for subsequent commands in batch
    activators (activate.bat and deactivate.bat)
  - Bump embed setuptools to 65.3
  - Upgrade embedded pip to 22.2.2 from 22.2.1 and setuptools to
    63.4.1 from 63.2.0
  - Bump embeded pip from 22.2 to 22.2.1
  - Update Nushell activation scripts to version 0.67
  - Drop support for running under Python 2 (still can generate
    Python 2 environments)
  - Upgrade embedded pip to 22.2 from 22.1.2 and setuptools to
    63.2.0 from 62.6.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=117
2022-10-10 09:42:39 +00:00
Dominique Leuenberger
3762ace310 Accepting request 988325 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/988325
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=51
2022-07-12 09:12:11 +00:00
da707699c9 Accepting request 988039 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/988039
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=115
2022-07-11 09:48:56 +00:00
Dominique Leuenberger
41c1a0a8f2 Accepting request 980911 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/980911
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=50
2022-06-06 09:10:11 +00:00
6eacc68f26 Accepting request 980812 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/980812
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=113
2022-06-05 16:45:28 +00:00
Dominique Leuenberger
d958e73f3c Accepting request 963040 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/963040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=49
2022-03-22 18:36:08 +00:00
0c666c58d0 Accepting request 961179 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/961179
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=111
2022-03-19 12:13:28 +00:00
Dominique Leuenberger
1dde4458d3 Accepting request 954311 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/954311
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=48
2022-02-15 22:57:03 +00:00
aceb4fc1a1 - update to 20.13.1:
* fix “execv() arg 2 must contain only strings” error on M1 MacOS
  * Ugrade embedded setuptools to 60.5.0 from 60.2.0
  * Upgrade embedded pip to 22.0.3 and setuptools to 60.6.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=110
2022-02-07 10:50:47 +00:00
Dominique Leuenberger
3a2e1d94ff Accepting request 950529 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/950529
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=47
2022-02-03 22:15:34 +00:00
1d6523f832 Accepting request 949893 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/949893
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=109
2022-02-01 18:51:23 +00:00
Dominique Leuenberger
d828d31925 Accepting request 940176 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/940176
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=46
2021-12-16 20:19:19 +00:00
d893d85d25 - update to 20.10.0:
* Special-case ``--prompt .`` to the name of the current directory
  * Add libffi-8.dll to pypy windows
  * Fixed path collision that could lead to a PermissionError or writing to system
    directories when using PyPy3.8
  * Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4``
  * Remove stray closing parenthesis in activate.bat

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=108
2021-12-06 10:00:38 +00:00
Dominique Leuenberger
0da4984aef Accepting request 923557 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/923557
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=45
2021-10-25 13:16:55 +00:00
8f00c6434d Accepting request 922215 from home:bnavigator:branches:devel:languages:python
- Update to 20.8.1
  * Fixed a bug where while creating a venv on top of an existing
    one, without cleaning, when seeded wheel version mismatch
    occurred, multiple .dist-info directories may be present,
    confounding entrypoint discovery
  * upgrade embedded setuptools to 58.1.0 and pip to 21.2.4
- Release to 20.8.0
  * Add nushell activation script
- Release 2.7.1
  * Fix unpacking dictionary items in PythonInfo.install_path
    (#2165)
- Fix and activate the test suite
- Update importlib* dependencies for older pythons
- Disable the python2 build because there is no
  python2-platformdirs on any distribution

OBS-URL: https://build.opensuse.org/request/show/922215
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=107
2021-10-01 19:29:38 +00:00
Dominique Leuenberger
d61e7e9eda Accepting request 918847 from devel:languages:python
- Add missing Requires on two modules. 
- Drop no longer required appdirs Requires.
- Shift new BuildRequires to :test to avoid cycles.

- 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/918847
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=44
2021-09-16 21:14:40 +00:00
Steve Kowalik
d22bcb7db5 - Shift new BuildRequires to :test to avoid cycles.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=106
2021-09-14 08:21:59 +00:00
Steve Kowalik
d613e24eda - Drop no longer required appdirs Requires.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=105
2021-09-14 08:16:41 +00:00
Steve Kowalik
c4fed9ecb5 - Add missing Requires on two modules.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=104
2021-09-14 08:10:32 +00:00
Steve Kowalik
552693e7b1 - Add missing Requires on platformdirs.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=103
2021-09-14 07:38:40 +00:00
83bf479dd3 Accepting request 910165 from home:mcepl:branches:devel:languages:python
- 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
2021-08-26 06:50:47 +00:00
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
Dominique Leuenberger
ac074be7d2 Accepting request 878421 from devel:languages:python
- Actually switch off all activation tests, so we can shed all those
  dependencies.
- Skip test_xonsh on platforms we don't carry xonsh.

OBS-URL: https://build.opensuse.org/request/show/878421
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=43
2021-03-15 09:53:53 +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
Dominique Leuenberger
9de40abc37 Accepting request 856965 from devel:languages:python
- 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/request/show/856965
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=42
2020-12-23 13:18:42 +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
Dominique Leuenberger
a957f4685c Accepting request 853600 from devel:languages:python
- Require xonsh for testing of all Python 3 flavors in Tumbleweed
  gh#openSUSE/python-rpm-macros#66
- Update to 20.2.1
  * Optionally skip VCS ignore directive for entire virtualenv directory
  * Add ``--read-only-app-data`` option to allow for creation based on 
    an existing app data cache which is non-writable
  * The python specification can now take one or more values, first found 
    is used to create the virtual environment

OBS-URL: https://build.opensuse.org/request/show/853600
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=41
2020-12-12 19:29:01 +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
Dominique Leuenberger
28f261edf9 Accepting request 840217 from devel:languages:python
- 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/request/show/840217
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=40
2020-10-29 08:47:02 +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
Dominique Leuenberger
480b52a26b Accepting request 819158 from devel:languages:python
- Add patch from upstream to fix one failing test:
  * tests.patch

- Add missing dependencies
- Skip online test test_seed_link_via_app_data

- 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>`_)

- 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>`_)

OBS-URL: https://build.opensuse.org/request/show/819158
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=39
2020-07-15 10:02:25 +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
Dominique Leuenberger
4771b8d955 Accepting request 794520 from devel:languages:python
- Update to 20.0.17:
  * minor fixes
  * update of embedded modules

- 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

- Update to 20.0.10:
  * Complete rewrite and redesign of the virtualenv package

OBS-URL: https://build.opensuse.org/request/show/794520
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=38
2020-04-19 19:49:34 +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
Dominique Leuenberger
3718032f35 Accepting request 782218 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/782218
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=37
2020-03-08 21:22:41 +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
Dominique Leuenberger
54a43b21dd Accepting request 770676 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/770676
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=36
2020-02-15 21:23:00 +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
Dominique Leuenberger
7f83d1281e Accepting request 731579 from devel:languages:python
- Use multibuild to avoid cycles with pytest

- 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/request/show/731579
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=35
2019-09-23 10:19:33 +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
Dominique Leuenberger
b64c3cb6e0 Accepting request 680531 from devel:languages:python
- 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

- Add requires: python-setuptools (bsc#1127328)

OBS-URL: https://build.opensuse.org/request/show/680531
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=34
2019-03-04 08:11:23 +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
Dominique Leuenberger
d476e6ce41 Accepting request 627455 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/627455
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=33
2018-08-08 12:45:18 +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
Dominique Leuenberger
7fdd5e7346 Accepting request 624537 from devel:languages:python
- Enable tests, skip upstream failing one

- Fix failure of virtualenv --always-copy (bsc#1102096):
  * pypa-virtualenv-1189.patch

OBS-URL: https://build.opensuse.org/request/show/624537
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=32
2018-07-23 15:58:56 +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
Dominique Leuenberger
ca11ed4ea5 Accepting request 578617 from devel:languages:python
- Add missing Requires for python (bsc#1081707)

OBS-URL: https://build.opensuse.org/request/show/578617
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=31
2018-02-22 13:58:04 +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
Dominique Leuenberger
5588b8302e Accepting request 482903 from devel:languages:python
- 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

- 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/482903
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=30
2017-04-19 16:04:03 +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
Dominique Leuenberger
50afb2dd78 Accepting request 425186 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/425186
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=29
2016-09-09 08:16:42 +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
Stephan Kulow
d2f33fdafa Accepting request 331692 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/331692
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=28
2015-09-24 05:16:21 +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
Dominique Leuenberger
37f1ded40f Accepting request 319410 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/319410
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=27
2015-08-06 22:21:01 +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
Dominique Leuenberger
2d2d72a27b Accepting request 294337 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/294337
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=26
2015-04-05 00:04:04 +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
Dominique Leuenberger
68dc9fa7cb Accepting request 261688 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/261688
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=25
2014-11-18 21:45:24 +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
Stephan Kulow
ef8e1320fe Accepting request 249862 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/249862
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=24
2014-09-17 15:27:03 +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
Stephan Kulow
e4a89f30d8 Accepting request 228207 from devel:languages:python
update to 1.11.4 (forwarded request 228206 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/228207
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=22
2014-03-31 18:44:21 +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
Stephan Kulow
6fa61254d9 Accepting request 221980 from 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 (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
2014-02-13 14:04:04 +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
Stephan Kulow
08aeeac6c8 Accepting request 213140 from devel:languages:python
- 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
2014-01-09 14:54: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
Tomáš Chvátal
0563ac177a Accepting request 202945 from devel:languages:python
- 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/request/show/202945
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=19
2013-10-11 11:49:26 +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
Stephan Kulow
a9e2e17dd3 Accepting request 184868 from devel:languages:python
- 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
2013-07-29 19:11:59 +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
Sascha Peilicke
a2802a2992 - Use update-alternatives for parallel-installability with Python3 version
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=26
2013-07-29 14:37:28 +00:00
Sascha Peilicke
bda8666a2b - 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/package/show/devel:languages:python/python-virtualenv?expand=0&rev=25
2013-07-29 14:34:37 +00:00
Stephan Kulow
0635407e31 Accepting request 159592 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/159592
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=16
2013-03-17 09:07:49 +00:00
Alexandre Rogoski
1603fca704 - Update to 1.9.1:
* 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
2013-03-08 13:12:18 +00:00
Ismail Dönmez
98ea3dcdfc Accepting request 144040 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/144040
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=14
2012-12-05 13:06:30 +00:00
Alexandre Rogoski
c7a7fe9ca2 - Update to 1.8.4:
- 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
2012-11-27 07:56:42 +00:00
Alexandre Rogoski
f640c29504 - Update to 1.8.3:
- 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
2012-11-25 11:40:08 +00:00
Stephan Kulow
fb04b6c988 Accepting request 135565 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/135565
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=13
2012-09-25 08:46:54 +00:00
Alexandre Rogoski
0423888ede - Update to 1.8.2:
* Updated the included pip version to 1.2.1 to fix regressions
    introduced there in 1.2.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=18
2012-09-06 11:55:57 +00:00
Alexandre Rogoski
02d0181241 - Update to 1.8.1:
* Fixed distribute version used with --never-download. Thanks
    michr for report and patch.
  * Fix creating Python 3.3 based virtualenvs by unsetting the
    __PYVENV_LAUNCHER__ environment variable in subprocesses.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=17
2012-09-03 13:03:41 +00:00
Alexandre Rogoski
66853c9693 - Update to 1.8:
- 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
2012-09-01 23:26:13 +00:00
Stephan Kulow
9774084ee4 Accepting request 126139 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/126139
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=12
2012-06-26 16:03:18 +00:00
Alexandre Rogoski
0bc5758487 - Update to 1.7.2:
- Updated to distribute 0.6.27.
  - Fix activate.fish on OS X. Fixes #8. Thanks David Schoonover.
  - Create a virtualenv-x.x script with the Python version when
    installing, so virtualenv for multiple Python versions can be
    installed to the same script location. Thanks Miki Tebeka.
  - Restored ability to create a virtualenv with a path longer than
    78 characters, without breaking creation of virtualenvs with
    non-ASCII paths. Thanks, Bradley Ayers.
  - Added ability to create virtualenvs without having installed
    Apple's developers tools (using an own implementation of
    install_name_tool). Thanks Mike Hommey.
  - Fixed PyPy and Jython support on Windows. Thanks Konstantin
    Zemlyak.
  - Added pydoc script to ease use. Thanks Marc Abramowitz. Fixes
    #149.
  - Fixed creating a bootstrap script on Python 3. Thanks Raul
    Leal. Fixes #280.
  - Fixed inconsistency when having set the PYTHONDONTWRITEBYTECODE
    env var with the --distribute option or the
    VIRTUALENV_USE_DISTRIBUTE env var. VIRTUALENV_USE_DISTRIBUTE
    is now considered again as a legacy alias.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=14
2012-06-22 22:36:04 +00:00
Stephan Kulow
5e6aa55034 Accepting request 106725 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/106725
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=10
2012-02-24 05:54:03 +00:00
Alexandre Rogoski
10241aca72 - Update to 1.7.1.2:
* Fixed minor issue in --relocatable. Thanks, Cap Petschulat.
- Aditional changes from 1.7.1.1:
  * Bumped the version string in virtualenv.py up, too.
  * Fixed rST rendering bug of long description.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=12
2012-02-17 11:58:11 +00:00
Stephan Kulow
537a68bcb2 Accepting request 103947 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/103947
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=9
2012-02-14 18:06:43 +00:00
Alexandre Rogoski
387f45d8e6 Accepting request 94536 from home:aledr:branches
Update to 1.7.

OBS-URL: https://build.opensuse.org/request/show/94536
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=10
2011-12-06 10:16:45 +00:00
0f3716b4fc Autobuild autoformatter for 76690
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=7
2011-07-25 15:30:05 +00:00
1a8ac1a76e Accepting request 76690 from devel:languages:python
Update to 1.6.4. (forwarded request 76681 from aledr)

OBS-URL: https://build.opensuse.org/request/show/76690
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=6
2011-07-25 15:29:54 +00:00
Sascha Peilicke
156bca68c1 Accepting request 76681 from home:aledr:branches
Update to 1.6.4.

OBS-URL: https://build.opensuse.org/request/show/76681
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=8
2011-07-22 06:58:25 +00:00
Berthold Gunreben
6e9ebb5603 Autobuild autoformatter for 76511
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=5
2011-07-20 08:07:49 +00:00
OBS User buildservice-autocommit
d2c7a63fb6 Updating link to change in openSUSE:Factory/python-virtualenv revision 5.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=9ec7c44133a04ca01cdf9847fd8f2122
2011-07-20 08:07:49 +00:00
Berthold Gunreben
92f834063d Accepting request 76511 from devel:languages:python
- Spec file cleanup:
  * Remove she-bang line from non-executable script (rpmlint warning)
  * Remove in-tree libraries (setuptools, pip & distribute)
  * Don't package PKG-INFO but AUTHORS.txt and LICENSE.txt

OBS-URL: https://build.opensuse.org/request/show/76511
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=4
2011-07-20 08:07:34 +00:00
Sascha Peilicke
34e407a3bf OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=6 2011-07-19 13:30:08 +00:00
Sascha Peilicke
4523ef57eb - Update to version 1.6.3:
* Restored ability to run on Python < 2.7.
- Changes from version 1.6.2:
  * Updated embedded distribute release to 0.6.19.
  * Updated embedded pip release to 1.0.2.
  * Fixed #141 - Be smarter about finding pkg_resources when using the
    non-default Python intepreter (by using the -p option).
  * Fixed #112 - Fixed path in docs.
  * Fixed #109 - Corrected doctests of a Logger method.
  * Fixed #118 - Fixed creating virtualenvs on platforms that use the
    "posix_local" install scheme, such as Ubuntu with Python 2.7.
  * Add missing library to Python 3 virtualenvs (_dummy_thread).
- Spec file cleanup:
  * Remove she-bang line from non-executable script (rpmlint warning)
  * Remove in-tree libraries (setuptools, pip & distribute)
  * Don't package PKG-INFO but AUTHORS.txt and LICENSE.txt

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=5
2011-07-19 13:29:34 +00:00
ad96eb4d7f Accepting request 76381 from devel:languages:python
Update to 1.6.3. (forwarded request 76338 from aledr)

OBS-URL: https://build.opensuse.org/request/show/76381
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=3
2011-07-19 13:19:33 +00:00
Sascha Peilicke
0fcd6688a1 Autobuild autoformatter for 67239
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=2
2011-04-14 11:07:29 +00:00
Sascha Peilicke
c47625d50d Accepting request 67239 from devel:languages:python
Accepted submit request 67239 from user babelworx

OBS-URL: https://build.opensuse.org/request/show/67239
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-virtualenv?expand=0&rev=1
2011-04-14 11:07:15 +00:00
2 changed files with 0 additions and 6 deletions

BIN
virtualenv-20.26.3.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:280aede09a2a5c317e409a00102e7077c6432c5a38f0ef938e643805a7ad2c48
size 9372482