Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update virtualenv to 20.26.3 #499

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

pyup-bot
Copy link
Collaborator

This PR updates virtualenv from 20.8.1 to 20.26.3.

Changelog

20.26.3

~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

* setuptools to ``70.1.0`` from ``69.5.1``
* pip to ``24.1``from ``24.0`` (:issue:`2741`)

20.26.2

~~~~~~~~~~~~~~~~~~
- ``virtualenv.pyz`` no longer fails when zipapp path contains a symlink - by :user:`HandSonic` and :user:`petamas`. (:issue:`1949`)
- Fix bad return code from activate.sh if hashing is disabled - by :user:'fenkes-ibm'. (:issue:`2717`)

20.26.1

~~~~~~~~~~~~~~~~~~
- fix PATH-based Python discovery on Windows - by :user:`ofek`. (:issue:`2712`)

20.26.0

~~~~~~~~~~~~~~~~~~
- allow builtin discovery to discover specific interpreters (e.g. ``python3.12``) given an unspecific spec (e.g. ``python3``) - by :user:`flying-sheep`. (:issue:`2709`)

20.25.3

~~~~~~~~~~~~~~~~~~
- Python 3.13.0a6 renamed pathmod to parser. (:issue:`2702`)

20.25.2

~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

- setuptools of ``69.1.0`` to ``69.5.1``
- wheel of ``0.42.0`` to ``0.43.0`` (:issue:`2699`)

20.25.1

~~~~~~~~~~~~~~
- :issue:`2688`

20.25.0

~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

* wheel to ``0.41.3`` from ``0.41.2`` (:issue:`2665`)
- Upgrade embedded wheels:

* wheel to ``0.42.0`` from ``0.41.3``
* setuptools to ``69.0.2`` from ``68.2.2`` (:issue:`2669`)

20.24.6

~~~~~~~~~~~~~~~~~~
- Use get_hookimpls method instead of the private attribute in tests. (:issue:`2649`)
- Upgrade embedded wheels:

* setuptools to ``68.2.2`` from ``68.2.0``
* pip to ``23.3.1`` from ``23.2.1`` (:issue:`2656`)

20.24.5

~~~~~~~~~~~~~~~~~~
- Declare PyPy 3.10 support - by :user:`cclauss`. (:issue:`2638`)
- Brew on macOS no longer allows copy builds - disallow choosing this by :user:`gaborbernat`. (:issue:`2640`)
- Upgrade embedded wheels:

* setuptools to ``68.2.0`` from ``68.1.2`` (:issue:`2642`)

20.24.4

~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

* setuptools to ``68.1.2`` from ``68.1.0`` on ``3.8+``
* wheel to ``0.41.2`` from ``0.41.1``  on ``3.7+`` (:issue:`2628`)

20.24.3

~~~~~~~~~~~~~~
- :issue:`2610`

20.24.2

~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

* pip to ``23.2.1`` from ``23.2``
* wheel to ``0.41.0`` from ``0.40.0`` (:issue:`2614`)

20.24.1

~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

* pip to ``23.2`` from ``23.1.2`` - by :user:`arielkirkwood` (:issue:`2611`)

20.24.0

~~~~~~~~~~~~~~~~~~
- Fix test suite - by :user:`gaborbernat`. (:issue:`2592`)
- Upgrade embedded wheels:

* setuptools to ``68.0.0`` from ``67.8.0`` (:issue:`2607`)

20.23.1

~~~~~~~~~~~~~~~~~~
- update and simplify nushell activation script, fixes an issue on Windows resulting in consecutive command not found - by :user:`melMass`. (:issue:`2572`)
- Upgrade embedded wheels:

* setuptools to ``67.8.0`` from ``67.7.2`` (:issue:`2588`)

20.23.0

~~~~~~~~~~~~~~~~~~
- Prevent ``PermissionError`` when using venv creator on systems that deliver files without user write
permission - by :user:`kulikjak`. (:issue:`2543`)
- Upgrade setuptools to ``67.7.2`` from ``67.6.1`` and pip to ``23.1.2`` from ``23.1`` - by :user:`szleb`. (:issue:`2560`)

20.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``- by :user:`gaborbernat`. (:issue:`2548`)

20.21.1

~~~~~~~~~~~~~~~~~~
- Add ``tox.ini`` to sdist - by :user:`mtelka`. (:issue:`2511`)
- 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. (:issue:`2527`)
- The nushell command 'str collect' has been superseded by the 'str join' command. The activate.nu script has
been updated to reflect this change. (:issue:`2532`)
- 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`` (:issue:`2546`)

20.21.0

~~~~~~~~~~~~~~~~~~
- 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. (:issue:`2514`)
- Do not assume the default encoding. (:issue:`2515`)
- Make ``ReentrantFileLock`` thread-safe and,
thereby, fix race condition in ``virtualenv.cli_run`` - by :user:`radoering`. (:issue:`2516`)

20.20.0

~~~~~~~~~~~~~~~~~~
- Discover CPython implementations distributed on Windows by any organization - by :user:`faph`. (:issue:`2504`)
- Upgrade embedded setuptools to ``67.4.0`` from ``67.1.0`` and pip to ``23.0.1`` from ``23.0`` - by :user:`gaborbernat`. (:issue:`2510`)

20.19.0

~~~~~~~~~~~~~~~~~~
- Allow platformdirs version ``3`` - by :user:`cdce8p`. (:issue:`2499`)

20.18.0

~~~~~~~~~~~~~~~~~~
- Fix broken prompt in Nushell when activating virtual environment - by :user:`kubouc`. (:issue:`2481`)
- Bump embedded pip to ``23.0`` and setuptools to ``67.1`` - by :user:`gaborbernat`. (:issue:`2489`)

20.17.1

~~~~~~~~~~~~~~~~~~
- A ``py`` or ``python`` spec means any Python rather than ``CPython`` - by :user:`gaborbernat`. (`2460 <https://github.com/pypa/virtualenv/issues/2460>`_)
- Make ``activate.nu`` respect ``VIRTUAL_ENV_DISABLE_PROMPT`` and not set the prompt if requested - by :user:`m-lima`. (`2461 <https://github.com/pypa/virtualenv/issues/2461>`_)

20.17.0

~~~~~~~~~~~~~~~~~~
- Do not use deprecated API from ``importlib.resources`` on Python 3.10 or later - by :user:`gaborbernat`. (`2448 <https://github.com/pypa/virtualenv/issues/2448>`_)
- Upgrade embedded setuptools to ``65.6.3`` from ``65.5.1`` - by :user:`gaborbernat`. (`2451 <https://github.com/pypa/virtualenv/issues/2451>`_)

20.16.7

~~~~~~~~~~~~~~~~~~
- Use parent directory of python executable for pyvenv.cfg "home" value per PEP 405 - by :user:`vfazio`. (`2440 <https://github.com/pypa/virtualenv/issues/2440>`_)
- In POSIX virtual environments, try alternate binary names if ``sys._base_executable`` does not exist - by :user:`vfazio`. (`2442 <https://github.com/pypa/virtualenv/issues/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`` - by :user:`gaborbernat`. (`2443 <https://github.com/pypa/virtualenv/issues/2443>`_)

20.16.6

~~~~~~~~~~~~~~~~~~
- Fix selected scheme on debian derivatives for python 3.10 when ``python3-distutils`` is not installed or the ``venv`` scheme is not available - by :user:`asottile`. (`2350 <https://github.com/pypa/virtualenv/issues/2350>`_)
- Allow the test suite to pass even with the original C shell (rather than ``tcsh``) - by :user:`kulikjak`. (`2418 <https://github.com/pypa/virtualenv/issues/2418>`_)
- Fix fallback handling of downloading wheels for bundled packages - by :user:`schaap`. (`2429 <https://github.com/pypa/virtualenv/issues/2429>`_)
- Upgrade embedded setuptools to ``65.5.0`` from ``65.3.0`` and pip to ``22.3`` from ``22.2.2`` - by :user:`gaborbernat`. (`2434 <https://github.com/pypa/virtualenv/issues/2434>`_)

20.16.5

~~~~~~~~~~~~~~~~~~
- Do not turn echo off for subsequent commands in batch activators
(``activate.bat`` and ``deactivate.bat``) - by :user:`pawelszramowski`. (`2411 <https://github.com/pypa/virtualenv/issues/2411>`_)

20.16.4

~~~~~~~~~~~~~~~~~~
- Bump embed setuptools to ``65.3`` - by :user:`gaborbernat`. (`2405 <https://github.com/pypa/virtualenv/issues/2405>`_)

20.16.3

~~~~~~~~~~~~~~~~~~
- Upgrade embedded pip to ``22.2.2`` from ``22.2.1`` and setuptools to ``63.4.1`` from ``63.2.0`` - by :user:`gaborbernat`. (`2395 <https://github.com/pypa/virtualenv/issues/2395>`_)

20.16.2

~~~~~~~~~~~~~~~~~~
- Bump embedded pip from ``22.2`` to ``22.2.1`` - by :user:`gaborbernat`. (`2391 <https://github.com/pypa/virtualenv/issues/2391>`_)

20.16.1

~~~~~~~~~~~~~~~~~~
- Update Nushell activation scripts to version 0.67 - by :user:`kubouch`. (`2386 <https://github.com/pypa/virtualenv/issues/2386>`_)

20.16.0

~~~~~~~~~~~~~~~~~~
- Drop support for running under Python 2 (still can generate Python 2 environments) - by :user:`gaborbernat`. (`2382 <https://github.com/pypa/virtualenv/issues/2382>`_)
- Upgrade embedded pip to ``22.2`` from ``22.1.2`` and  setuptools to ``63.2.0`` from ``62.6.0`` -
by :user:`gaborbernat`. (`2383 <https://github.com/pypa/virtualenv/issues/2383>`_)

20.15.1

~~~~~~~~~~~~~~~~~~
- Fix the incorrect operation when ``setuptools`` plugins output something into ``stdout``. (`2335 <https://github.com/pypa/virtualenv/issues/2335>`_)
- CPython3Windows creator ignores missing ``DLLs`` dir. (`2368 <https://github.com/pypa/virtualenv/issues/2368>`_)

20.15.0

~~~~~~~~~~~~~~~~~~
- Upgrade embedded setuptools to ``62.3.3`` from ``62.6.0`` and pip to ``22.1.2`` from ``22.0.4``
- by :user:`gaborbernat`. (`2348 <https://github.com/pypa/virtualenv/issues/2348>`_)
- Use ``shlex.quote`` instead of deprecated ``pipes.quote`` in Python 3 - by :user:`frenzymadness`. (`2351 <https://github.com/pypa/virtualenv/issues/2351>`_)
- Fix Windows PyPy 3.6 - by :user:`reksarka`. (`2363 <https://github.com/pypa/virtualenv/issues/2363>`_)

20.14.1

~~~~~~~~~~~~~~~~~~
- Upgrade embedded setuptools to ``62.1.0`` from ``61.0.0`` - by :user:`gaborbernat`. (`2327 <https://github.com/pypa/virtualenv/issues/2327>`_)

20.14.0

~~~~~~~~~~~~~~~~~~
- Upgrade embedded setuptools to ``61.0.0`` from ``60.10.0`` - by :user:`gaborbernat`. (`2322 <https://github.com/pypa/virtualenv/issues/2322>`_)

20.13.4

~~~~~~~~~~~~~~~~~~
- Improve performance of python startup inside created virtualenvs - by :user:`asottile`. (`2317 <https://github.com/pypa/virtualenv/issues/2317>`_)
- Upgrade embedded setuptools to ``60.10.0`` from ``60.9.3`` - by :user:`gaborbernat`. (`2320 <https://github.com/pypa/virtualenv/issues/2320>`_)

20.13.3

~~~~~~~~~~~~~~~~~~
- Avoid symlinking the contents of ``/usr`` into PyPy3.8+ virtualenvs - by :user:`stefanor`. (`2310 <https://github.com/pypa/virtualenv/issues/2310>`_)
- Bump embed pip from ``22.0.3`` to ``22.0.4`` - by :user:`gaborbernat`. (`2311 <https://github.com/pypa/virtualenv/issues/2311>`_)

20.13.2

~~~~~~~~~~~~~~~~~~
- Upgrade embedded setuptools to ``60.9.3`` from ``60.6.0`` - by :user:`gaborbernat`. (`2306 <https://github.com/pypa/virtualenv/issues/2306>`_)

20.13.1

~~~~~~~~~~~~~~~~~~
- fix "execv() arg 2 must contain only strings" error on M1 MacOS (`2282 <https://github.com/pypa/virtualenv/issues/2282>`_)
- Upgrade embedded setuptools to ``60.5.0`` from ``60.2.0`` - by :user:`asottile`. (`2289 <https://github.com/pypa/virtualenv/issues/2289>`_)
- Upgrade embedded pip to ``22.0.3`` and setuptools to ``60.6.0`` - by :user:`gaborbernat` and :user:`asottile`. (`2294 <https://github.com/pypa/virtualenv/issues/2294>`_)

20.13.0

~~~~~~~~~~~~~~~~~~
- Fix ``AttributeError: 'bool' object has no attribute 'error'`` when creating a
Python 2.x virtualenv on macOS - by ``moreati``. (`2269 <https://github.com/pypa/virtualenv/issues/2269>`_)
- Fix ``PermissionError: [Errno 1] Operation not permitted`` when creating a
Python 2.x virtualenv on macOS/arm64 - by ``moreati``. (`2271 <https://github.com/pypa/virtualenv/issues/2271>`_)

20.12.1

~~~~~~~~~~~~~~~~~~
- Try using previous updates of ``pip``, ``setuptools`` & ``wheel``
when inside an update grace period rather than always falling back
to embedded wheels - by :user:`mayeut`. (`2265 <https://github.com/pypa/virtualenv/issues/2265>`_)
- New patch versions of ``pip``, ``setuptools`` & ``wheel`` are now
returned in the expected timeframe. - by :user:`mayeut`. (`2266 <https://github.com/pypa/virtualenv/issues/2266>`_)
- Manual upgrades of ``pip``, ``setuptools`` & ``wheel`` are
not discarded by a periodic update - by :user:`mayeut`. (`2267 <https://github.com/pypa/virtualenv/issues/2267>`_)

20.12.0

~~~~~~~~~~~~~~~~~~
- Fix ``--download`` option - by :user:`mayeut`. (`2120 <https://github.com/pypa/virtualenv/issues/2120>`_)
- Upgrade embedded setuptools to ``60.2.0`` from ``60.1.1`` - by :user:`gaborbernat`. (`2263 <https://github.com/pypa/virtualenv/issues/2263>`_)

20.11.2

~~~~~~~~~~~~~~~~~~
- Fix installation of pinned versions of ``pip``, ``setuptools`` & ``wheel`` - by :user:`mayeut`. (`2203 <https://github.com/pypa/virtualenv/issues/2203>`_)

20.11.1

~~~~~~~~~~~~~~~~~~
- Bump embed setuptools to ``60.1.1`` from ``60.1.0`` - by :user:`gaborbernat`. (`2258 <https://github.com/pypa/virtualenv/issues/2258>`_)

20.11.0

~~~~~~~~~~~~~~~~~~
- Avoid deprecation warning from py-filelock argument - by :user:`ofek`. (`2237 <https://github.com/pypa/virtualenv/issues/2237>`_)
- Upgrade embedded setuptools to ``61.1.0`` from ``58.3.0`` - by :user:`gaborbernat`. (`2240 <https://github.com/pypa/virtualenv/issues/2240>`_)
- Drop the runtime dependency of ``backports.entry-points-selectable`` - by :user:`hroncok`. (`2246 <https://github.com/pypa/virtualenv/issues/2246>`_)
- Fish: PATH variables should not be quoted when being set - by :user:`d3dave`. (`2248 <https://github.com/pypa/virtualenv/issues/2248>`_)

20.10.0

~~~~~~~~~~~~~~~~~~
- Fix broken prompt set up by activate.bat - by :user:`SiggyBar`. (`2225 <https://github.com/pypa/virtualenv/issues/2225>`_)

20.9.0

~~~~~~~~~~~~~~~~~
- Fixed path collision that could lead to a PermissionError or writing to system
directories when using PyPy3.8 - by :user:`mgorny`. (`2182 <https://github.com/pypa/virtualenv/issues/2182>`_)
- Upgrade embedded setuptools to ``58.3.0`` from ``58.1.0`` and pip to ``21.3.1`` from ``21.2.4`` - by
:user:`gaborbernat`. (`2205 <https://github.com/pypa/virtualenv/issues/2205>`_)
- Remove stray closing parenthesis in activate.bat - by :user:`SiggyBar`. (`2221 <https://github.com/pypa/virtualenv/issues/2221>`_)
Links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant