Bump virtualenv from 20.33.1 to 20.36.1 - #68
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
No issues found across 1 file
Architecture diagram
sequenceDiagram
participant User as CLI User
participant CLI as virtualenv CLI
participant Discover as Interpreter Discovery
participant Config as Configuration
participant AppData as AppData/Lock Manager
participant FS as File System
Note over User,FS: Virtual Environment Creation Flow
User->>CLI: virtualenv --python ">=3.12" myenv
CLI->>Config: Parse CLI arguments
Config->>Config: CHANGED: Evaluate PEP 440 specifier
alt PEP 440 specifier provided
Config->>Discover: CHANGED: Pass version specifier (e.g., >=3.12)
Discover->>Discover: CHANGED: Resolve best matching interpreter
alt Interpreter found
Discover-->>Config: Python path resolved
else No match
Discover-->>Config: Error: no matching interpreter
end
else Exact version
Config->>Discover: Pass exact version string
Discover->>FS: Search for Python installations
FS-->>Discover: Interpreter paths
Discover-->>Config: Python path resolved
end
CLI->>AppData: CHANGED: Acquire app_data lock (TOCTOU fix)
AppData->>FS: CHANGED: Create directory with safe symlink checks
alt Lock acquired
AppData-->>CLI: Lock granted
CLI->>FS: Create virtual environment structure
else TOCTOU attack detected
AppData-->>CLI: Error: security violation
CLI-->>User: Error message
end
CLI->>FS: Install seed packages (pip, setuptools, wheel)
FS-->>CLI: Packages installed
CLI-->>User: Virtual environment created
Note over FS: Microsoft Store Interpreter Fix (Latin-1 encoding)
Discover->>FS: CHANGED: Read interpreter symlink with Latin-1 encoding
FS-->>Discover: Correctly decoded shortcut path
Bumps [virtualenv](https://github.com/pypa/virtualenv) from 20.33.1 to 20.36.1. - [Release notes](https://github.com/pypa/virtualenv/releases) - [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst) - [Commits](pypa/virtualenv@20.33.1...20.36.1) --- updated-dependencies: - dependency-name: virtualenv dependency-version: 20.36.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/uv/virtualenv-20.36.1
branch
from
June 10, 2026 01:33
864b617 to
d5cec16
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps virtualenv from 20.33.1 to 20.36.1.
Release notes
Sourced from virtualenv's releases.
... (truncated)
Changelog
Sourced from virtualenv's changelog.
... (truncated)
Commits
d0ad11drelease 20.36.1dec4cecMerge pull request #3013 from gaborbernat/fix-sec5fe5d38release 20.36.0 (#3011)9719376release 20.36.00276db6Add support for PEP 440 version specifiers in the--pythonflag. (#3008)4f900c2Fix Interpreter discovery bug wrt. Microsoft Store shortcut using Latin-1 (#3...13afcc6fix: resolve EncodingWarning in tox upgrade environment (#3007)31b5d31[pre-commit.ci] pre-commit autoupdate (#2997)7c28422fix: update filelock dependency version to 3.20.1 to fix CVE CVE-2025-68146 (...365628ctest_too_many_open_files: assert onerrno.EMFILEinstead ofstrerror(#3001)