build(deps): bump virtualenv from 20.32.0 to 20.34.0
Open
Number: #132
Type: Pull Request
State: Open
Type: Pull Request
State: Open
Author:
dependabot[bot]
Association: Contributor
Comments: 0
Association: Contributor
Comments: 0
Created:
September 12, 2025 at 01:57 AM UTC
(9 months ago)
(9 months ago)
Updated:
September 12, 2025 at 01:57 AM UTC
(9 months ago)
(9 months ago)
Labels:
dependencies python:uv
dependencies python:uv
Description:
Bumps virtualenv from 20.32.0 to 20.34.0.
Release notes
Sourced from virtualenv's releases.
20.34.0
What's Changed
- release 20.33.1 by
@gaborbernatin pypa/virtualenv#2943- fix: Improve file limit test to catch SystemExit or RuntimeError by
@esafakin pypa/virtualenv#2936- feat: Abstract out caching in discovery by
@esafakin pypa/virtualenv#2946- CI: Add PyPy 3.11 to CI checks by
@esafakin pypa/virtualenv#2934- feat: Decouple
FileCachefrompy_infoby@esafakin pypa/virtualenv#2947- feat: Remove references to py_info from FileCache by
@esafakin pypa/virtualenv#2948- refactor: Decouple discovery from creator plugins by
@esafakin pypa/virtualenv#2949- refactor: Decouple discovery by duplicating info utils by
@esafakin pypa/virtualenv#2951- fix: Python in
PATHtakes precedence over uv-managed Pythons by@edgarrmondragonin pypa/virtualenv#2952- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in pypa/virtualenv#2950- Bump pip to 25.2 by
@gaborbernatin pypa/virtualenv#2953Full Changelog: https://github.com/pypa/virtualenv/compare/20.33.1...20.34.0
20.33.1
What's Changed
- release 20.33.0 by
@gaborbernatin pypa/virtualenv#2929- fix(test): Restore mtime of py_info.py in test by
@esafakin pypa/virtualenv#2938- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in pypa/virtualenv#2937- fix: Correctly unpack _get_tcl_tk_libs() response in PythonInfo by
@esafakin pypa/virtualenv#2940- chore: Request shell and python details in bug reports by
@esafakin pypa/virtualenv#2942Full Changelog: https://github.com/pypa/virtualenv/compare/20.33.0...20.33.1
20.33.0
What's Changed
- release 20.32.0 by
@gaborbernatin pypa/virtualenv#2908- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in pypa/virtualenv#2909- Fix nushell deprecation warnings by
@gaborbernatin pypa/virtualenv#2910- test: Use
@pytest.mark.flakyinstead of@flaky.flakyby@mgornyin pypa/virtualenv#2911- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in pypa/virtualenv#2912- fix: handle StopIteration in discovery by
@esafakin pypa/virtualenv#2913- fix: Improve symlink check and sysconfig path handling by
@esafakin pypa/virtualenv#2914- docs: Recommend specific python version for virtualenv by
@esafakin pypa/virtualenv#2916- fix: Force UTF-8 encoding for pip subprocess by
@esafakin pypa/virtualenv#2918- fix: Prevent crash on file in PATH during discovery by
@esafakin pypa/virtualenv#2917- fix:
--try-first-withwas overriding an absolute--pythonpath by@esafakin pypa/virtualenv#2921- fix 'Too many open files' error and improve error message by
@esafakin pypa/virtualenv#2922- fix(testing): Prevent logging setup when --help is passed by
@esafakin pypa/virtualenv#2923- fix cache invalidation for PythonInfo by
@esafakin pypa/virtualenv#2925
... (truncated)
Changelog
Sourced from virtualenv's changelog.
v20.34.0 (2025-08-13)
Features - 20.34.0
- Abstract out caching in discovery - by :user:`esafak`. Decouple `FileCache` from `py_info` (discovery) - by :user:`esafak`. Remove references to py_info in FileCache - by :user:`esafak`. Decouple discovery from creator plugins - by :user:`esafak`. Decouple discovery by duplicating info utils - by :user:`esafak`. (:issue:`2074`) - Add PyPy 3.11 support. Contributed by :user:`esafak`. (:issue:`2932`)Bugfixes - 20.34.0
- Upgrade embedded wheel pip to
25.2from25.1.1- by :user:gaborbernat. (:issue:2333)- Accept RuntimeError in
test_too_many_open_files, by :user:esafak(:issue:2935)- Python in PATH takes precedence over uv-managed python. Contributed by :user:
edgarrmondragon. (:issue:2952)v20.33.1 (2025-08-05)
Bugfixes - 20.33.1
- Correctly unpack _get_tcl_tk_libs() response in PythonInfo. Contributed by :user:`esafak`. (:issue:`2930`) - Restore `py_info.py` timestamp in `test_py_info_cache_invalidation_on_py_info_change` Contributed by :user:`esafak`. (:issue:`2933`)v20.33.0 (2025-08-03)
Features - 20.33.0
- Added support for Tcl and Tkinter. You're welcome. Contributed by :user:
esafak. (:issue:425)Bugfixes - 20.33.0
- Prevent logging setup when --help is passed, fixing a flaky test. Contributed by :user:`esafak`. (:issue:`u`) - Fix cache invalidation for PythonInfo by hashing `py_info.py`. Contributed by :user:`esafak`. (:issue:`2467`) - When no discovery plugins are found, the application would crash with a StopIteration. This change catches the StopIteration and raises a RuntimeError with a more informative message. Contributed by :user:`esafak`. (:issue:`2493`) - Stop `--try-first-with` overriding absolute `--python` paths. Contributed by :user:`esafak`. (:issue:`2659`) - Force UTF-8 encoding for pip download Contributed by :user:`esafak`. (:issue:`2780`) - Creating a virtual environment on a filesystem without symlink-support would fail even with `--copies` </tr></table>
... (truncated)
Commits
a1ed8bbrelease 20.34.09ef8512Squash changelog entry for 20749b285efBump pip to 25.2 (#2953)e45a509[pre-commit.ci] pre-commit autoupdate (#2950)dfdae19fix: Python inPATHtakes precedence over uv-managed Pythons (#2952)1f4c76erefactor: Decouple discovery by duplicating info utils (#2951)c41da72refactor: Decouple discovery from creator plugins (#2949)02ae86ffeat: Remove references to py_info from FileCache (#2948)03f4800feat: DecoupleFileCachefrompy_info(#2947)d280b76CI: Add PyPy 3.11 to CI checks (#2934)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
Commits:
1
1
Files Changed:
1
1
Additions:
+3
+3
Deletions:
-3
-3
Package Dependencies
Technical Details
| ID: | 7580813 |
| UUID: | 2820996976 |
| Node ID: | PR_kwDOO1pBFM6oJP9w |
| Host: | GitHub |
| Repository: | DataIntegrationGroup/NMSampleLocations |
| Merge State: | Unknown |