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

No longer forcibly echo off during windows batch activation #2801

Merged
merged 11 commits into from
Nov 26, 2024
4 changes: 4 additions & 0 deletions docs/changelog/2800.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Upgrade embedded wheels:

* wheel to ``0.45.0`` from ``0.44.0``
* setuptools to ``75.5.0``
1 change: 1 addition & 0 deletions docs/changelog/2801.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
no longer forcibly echo off during windows batch activation
6 changes: 2 additions & 4 deletions src/virtualenv/activation/batch/activate.bat
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
@REM This file is UTF-8 encoded, so we need to update the current code page while executing it
@echo off
@for /f "tokens=2 delims=:." %%a in ('"%SystemRoot%\System32\chcp.com"') do (
@set _OLD_CODEPAGE=%%a
)
@for /f "tokens=2 delims=:." %%a in ('"%SystemRoot%\System32\chcp.com"') do @set _OLD_CODEPAGE=%%a

@if defined _OLD_CODEPAGE (
"%SystemRoot%\System32\chcp.com" 65001 > nul
)
Expand Down
26 changes: 13 additions & 13 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,37 @@
"3.8": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
"3.9": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"setuptools": "setuptools-75.5.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
"3.10": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"setuptools": "setuptools-75.5.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
"3.11": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"setuptools": "setuptools-75.5.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
"3.12": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"setuptools": "setuptools-75.5.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
"3.13": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"setuptools": "setuptools-75.5.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
"3.14": {
"pip": "pip-24.3.1-py3-none-any.whl",
"setuptools": "setuptools-75.3.0-py3-none-any.whl",
"wheel": "wheel-0.44.0-py3-none-any.whl",
"setuptools": "setuptools-75.5.0-py3-none-any.whl",
"wheel": "wheel-0.45.0-py3-none-any.whl",
},
}
MAX = "3.8"
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion tasks/update_embedded.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Helper script to rebuild virtualenv.py from virtualenv_support.""" # noqa: EXE002
"""Helper script to rebuild virtualenv.py from virtualenv_support."""

from __future__ import annotations

Expand Down