Revisions of python-virtualenv

Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 923557 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 45)
Automatic submission by obs-autosubmit
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 918847 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 44)
- 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
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 878421 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 43)
- Actually switch off all activation tests, so we can shed all those
  dependencies.
- Skip test_xonsh on platforms we don't carry xonsh.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 856965 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 42)
- update to 20.2.0:
  - Bump pip to ``20.3.1``, setuptools to ``51.0.0`` and wheel to ``0.36.1``
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 853600 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 41)
- 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
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 840217 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 40)
- 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.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 819158 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 39)
- 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>`_)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 794520 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 38)
- 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
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 731579 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 35)
- 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)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 680531 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 34)
- 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)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 624537 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 32)
- Enable tests, skip upstream failing one

- Fix failure of virtualenv --always-copy (bsc#1102096):
  * pypa-virtualenv-1189.patch
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 578617 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 31)
- Add missing Requires for python (bsc#1081707)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 482903 from Jan Matejek's avatar Jan Matejek (matejcik) (revision 30)
- 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
Displaying revisions 21 - 40 of 65
openSUSE Build Service is sponsored by