Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Udpate ensurepip from CPython 3.13.2#5740

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
youknowone wants to merge2 commits intoRustPython:main
base:main
Choose a base branch
Loading
fromyouknowone:ensurepip

Conversation

youknowone
Copy link
Member

@youknowoneyouknowone commentedApr 24, 2025
edited by coderabbitaibot
Loading

Summary by CodeRabbit

  • Refactor

    • Simplified the pip bootstrapping process by focusing solely on pip, removing support for multiple packages.
    • Updated internal logic to use modern path handling and context managers for locating the pip wheel file.
    • Increased the bundled pip version to 25.1.1.
  • Tests

    • Updated tests to use new path handling and context manager logic.
    • Improved test coverage for wheel file selection and version extraction.

@arihant2math
Copy link
Collaborator

Need#5590 first from what it seems

@fanninpm
Copy link
Contributor

Need#5590 first from what it seems

Now that#5590 is merged, is it possible to move forward with this?

@arihant2math
Copy link
Collaborator

Well typing is now broken in new and interesting ways :)
The contents oftyping_extensions should be a extra test at this rate to prevent regressions.

@arihant2math
Copy link
Collaborator

arihant2math commentedMay 1, 2025
edited
Loading

The error is a typing_extensions bug:
python/typing_extensions#404

@coderabbitaicoderabbitai
Copy link
Contributor

coderabbitaibot commentedJun 15, 2025
edited
Loading

"""

Walkthrough

The ensurepip module was refactored to streamline pip bootstrapping by focusing exclusively on pip, removing multi-package support and simplifying wheel discovery. The new implementation uses pathlib.Path for wheel directory handling, introduces context managers for locating the pip wheel, and updates tests to match the new logic and data structures.

Changes

File(s)Change Summary
Lib/ensurepip/init.pyRefactored to remove multi-package logic, added context managers for pip wheel discovery, updated pip version, and simplified bootstrapping and uninstall logic.
Lib/test/test_ensurepip.pyUpdated tests to use pathlib.Path, replaced removed logic with tests for new context managers, and corrected comments.

Sequence Diagram(s)

sequenceDiagram    participant User    participant ensurepip    participant SystemWheelDir    participant BundledResource    User->>ensurepip: _bootstrap()    ensurepip->>SystemWheelDir: _find_wheel_pkg_dir_pip()    alt pip wheel found in system dir        SystemWheelDir-->>ensurepip: Return pip wheel path context    else pip wheel not found        ensurepip->>BundledResource: Use bundled pip wheel path context    end    ensurepip->>ensurepip: Copy pip wheel to temp dir    ensurepip->>ensurepip: _run_pip("pip", [copied_wheel_path])
Loading

Poem

In the warren of wheels, one pip stands tall,
No more searching for packages, just one to install.
With pathlib and context, the code is now neat,
Simpler and swifter, a bunny’s small feat.
🐇✨
"""

✨ Finishing Touches
  • 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat withCodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag@coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag@coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on oursupport page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings togenerate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add@coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add@coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add@coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a.coderabbit.yaml file to the root of your repository.
  • Please see theconfiguration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation:# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit ourDocumentation for detailed information on how to use CodeRabbit.
  • Join ourDiscord Community to get help, request features, and share feedback.
  • Follow us onX/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitaicoderabbitaibot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
Lib/test/test_ensurepip.py (1)

9-9:Remove unused import.

TheTraversable import is not used anywhere in this test file.

-from importlib.resources.abc import Traversable from pathlib import Path
Lib/ensurepip/__init__.py (1)

53-61:Consider more robust version extraction.

While the current string manipulation works for the standard wheel naming convention, consider using a more robust approach to handle edge cases.

 def _get_pip_version():     with _get_pip_whl_path_ctx() as bundled_wheel_path:         wheel_name = bundled_wheel_path.name-        return (-            # Extract '21.2.4' from 'pip-21.2.4-py3-none-any.whl'-            wheel_name.-            removeprefix('pip-').-            partition('-')[0]-        )+        # Extract version from wheel filename: pip-{version}-py3-none-any.whl+        if wheel_name.startswith('pip-') and wheel_name.endswith('.whl'):+            # Remove prefix and suffix, then split on '-'+            name_parts = wheel_name[4:-4].split('-', 1)+            if name_parts:+                return name_parts[0]+        # Fallback to the bundled version if parsing fails+        return _PIP_VERSION
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between4e094ea anda542757.

📒 Files selected for processing (2)
  • Lib/ensurepip/__init__.py (5 hunks)
  • Lib/test/test_ensurepip.py (3 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (2)
Lib/test/test_ensurepip.py (2)
Lib/importlib/resources/abc.py (1)
  • Traversable (63-150)
Lib/ensurepip/__init__.py (2)
  • version (90-94)
  • _get_pip_whl_path_ctx (41-50)
Lib/ensurepip/__init__.py (3)
Lib/contextlib.py (1)
  • nullcontext (761-785)
Lib/shutil.py (1)
  • copy2 (441-479)
Lib/importlib/resources/_common.py (1)
  • as_file (162-167)
🪛 Pylint (3.3.7)
Lib/ensurepip/__init__.py

[error] 19-19: Module 'sysconfig' has no 'get_config_var' member

(E1101)

⏰ Context from checks skipped due to timeout of 90000ms (11)
  • GitHub Check: Run tests under miri
  • GitHub Check: Check the WASM package and demo
  • GitHub Check: Run snippets and cpython tests on wasm-wasi
  • GitHub Check: Run snippets and cpython tests (windows-latest)
  • GitHub Check: Run snippets and cpython tests (macos-latest)
  • GitHub Check: Run snippets and cpython tests (ubuntu-latest)
  • GitHub Check: Check Rust code with rustfmt and clippy
  • GitHub Check: Run rust tests (macos-latest)
  • GitHub Check: Run rust tests (ubuntu-latest)
  • GitHub Check: Run rust tests (windows-latest)
  • GitHub Check: Ensure compilation on various targets
🔇 Additional comments (9)
Lib/test/test_ensurepip.py (4)

25-25:LGTM!

Correctly updated to patch with aPath object, aligning with the main module's type change.


28-38:Good test coverage for the no-directory case.

These new tests properly verify the fallback behavior when_WHEEL_PKG_DIR is None, ensuring the bundled pip wheel is used.


40-53:Well-structured test for wheel selection.

The test properly verifies that_get_pip_whl_path_ctx() selects only the pip wheel file from the directory, correctly ignoring other wheels and non-wheel files.


68-69:Comment accurately updated.

The comment now correctly references_find_wheel_pkg_dir_pip() instead of the old function name.

Lib/ensurepip/__init__.py (5)

6-9:LGTM!

All new imports are appropriately used in the refactored code.


13-13:Pip version updated as intended.

The update to pip 25.1.1 aligns with the PR objective of updating from CPython 3.13.2.


19-22:Clean handling of optional wheel directory.

The code properly converts the config variable to a resolvedPath object when present, orNone otherwise. The static analysis warning aboutget_config_var is a false positive.

🧰 Tools
🪛 Pylint (3.3.7)

[error] 19-19: Module 'sysconfig' has no 'get_config_var' member

(E1101)


156-172:Clean refactoring of the bootstrap logic.

The simplified approach focusing solely on pip makes the code more maintainable. Good use of context managers and proper file copying with metadata preservation.


203-203:Consistent with single-package approach.

The change correctly reflects the module's focus on pip only.

@youknowone
Copy link
MemberAuthor

pypa/pip#13428

@youknowone
Copy link
MemberAuthor

  File "/tmp/tmp3a6kinnx/pip-25.1.1-py3-none-any.whl/pip/_vendor/typing_extensions.py", line 1768, in __new__

This is weird. We have typing.ParamSpec but it hits the else block

Copy link
Contributor

@coderabbitaicoderabbitaibot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
Lib/test/test_ensurepip.py (1)

9-9:Remove unused import or clarify its purpose.

TheTraversable import appears unused in the current code. If it's intended for future use or type annotations, consider adding a comment to clarify its purpose.

-from importlib.resources.abc import Traversable
Lib/ensurepip/__init__.py (1)

25-39:Consider semantic version-aware sorting.

The function uses lexicographical sorting (sorted()[-1]) to select the latest pip wheel, which may not work correctly for semantic versioning. For example, "pip-10.0.0.whl" would sort before "pip-9.0.0.whl" lexicographically.

Consider using a more robust version comparison:

-    last_matching_dist_wheel = sorted(dist_matching_wheels)[-1]+    from packaging import version+    def extract_version(wheel_path):+        wheel_name = wheel_path.name+        return version.parse(wheel_name.removeprefix('pip-').partition('-')[0])++    last_matching_dist_wheel = max(dist_matching_wheels, key=extract_version)

However, if the current approach works reliably in practice for the expected wheel naming patterns, the change may not be necessary.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and betweena542757 anda337c76.

📒 Files selected for processing (2)
  • Lib/ensurepip/__init__.py (5 hunks)
  • Lib/test/test_ensurepip.py (3 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
`Lib/**/*`: Files in the Lib/ directory (Python standard library copied from CPy...

Lib/**/*: Files in the Lib/ directory (Python standard library copied from CPython) should be edited very conservatively; modifications should be minimal and only to work around RustPython limitations.

📄 Source: CodeRabbit Inference Engine (.github/copilot-instructions.md)

List of files the instruction was applied to:

  • Lib/ensurepip/__init__.py
  • Lib/test/test_ensurepip.py
`Lib/test/**/*`: Tests in Lib/test often use markers such as '# TODO: RUSTPYTHON...

Lib/test/**/*: Tests in Lib/test often use markers such as '# TODO: RUSTPYTHON', 'unittest.skip("TODO: RustPython ")', or 'unittest.expectedFailure' with a '# TODO: RUSTPYTHON ' comment when modifications are made.
NEVER comment out or delete any test code lines except for removing '@unittest.expectedFailure' decorators and upper TODO comments.
NEVER modify test assertions, test logic, or test data in Lib/test files.
The only acceptable modifications to test files are: (1) removing '@unittest.expectedFailure' decorators and the upper TODO comments when tests actually pass, (2) adding '@unittest.expectedFailure' decorators when tests cannot be fixed.
When a test cannot pass due to missing language features, keep it as expectedFailure and document the reason.

📄 Source: CodeRabbit Inference Engine (.github/copilot-instructions.md)

List of files the instruction was applied to:

  • Lib/test/test_ensurepip.py
🧬 Code Graph Analysis (2)
Lib/ensurepip/__init__.py (3)
Lib/contextlib.py (1)
  • nullcontext (761-785)
Lib/shutil.py (1)
  • copy2 (441-479)
Lib/importlib/resources/_common.py (1)
  • as_file (162-167)
Lib/test/test_ensurepip.py (2)
Lib/importlib/resources/abc.py (1)
  • Traversable (63-150)
Lib/ensurepip/__init__.py (1)
  • _get_pip_whl_path_ctx (41-50)
🪛 Pylint (3.3.7)
Lib/ensurepip/__init__.py

[error] 19-19: Module 'sysconfig' has no 'get_config_var' member

(E1101)

🪛 Flake8 (7.2.0)
Lib/test/test_ensurepip.py

[error] 9-9: 'importlib.resources.abc.Traversable' imported but unused

(F401)

⏰ Context from checks skipped due to timeout of 90000ms (5)
  • GitHub Check: Run snippets and cpython tests (windows-latest)
  • GitHub Check: Run rust tests (macos-latest)
  • GitHub Check: Run rust tests (windows-latest)
  • GitHub Check: Ensure compilation on various targets
  • GitHub Check: Run rust tests (ubuntu-latest)
🔇 Additional comments (11)
Lib/test/test_ensurepip.py (3)

25-25:LGTM! Correctly updated to use Path object.

The change from string toPath(tmpdir) aligns with the refactored implementation where_WHEEL_PKG_DIR is now aPath object.


28-53:Excellent test coverage for the new functionality.

The new test methods properly cover:

  • Version extraction when_WHEEL_PKG_DIR isNone (bundled wheel scenario)
  • Context manager behavior in both bundled and system wheel directory scenarios
  • Proper wheel selection from directories with multiple files

The test logic and assertions are correct and align with the refactored implementation.


68-68:LGTM! Comment correctly updated.

The comment properly reflects the new function name_find_wheel_pkg_dir_pip() that replaced_find_packages().

Lib/ensurepip/__init__.py (8)

6-9:LGTM! All new imports are properly utilized.

The added imports support the refactored functionality:

  • nullcontext for conditional context management
  • Path for wheel directory handling
  • copy2 for wheel file copying

19-23:LGTM! Clean implementation of wheel directory handling.

The logic properly:

  • Uses walrus operator for concise conditional assignment
  • Converts string path to resolvedPath object when available
  • Defaults toNone when no system wheel directory is configured

41-50:LGTM! Well-designed context manager for wheel path resolution.

The function properly:

  • Prioritizes system wheel directory over bundled wheels
  • Usesresources.as_file() for proper resource handling
  • Returns appropriate context managers in both scenarios
  • Uses clear path construction with the/ operator

53-61:LGTM! Clean version extraction implementation.

The function correctly:

  • Uses the context manager to access the wheel path
  • Parses the version from wheel filename using appropriate string methods
  • Follows the wheel naming convention (pip-VERSION-py3-none-any.whl)
  • Uses readable method chaining with proper line breaks

94-94:LGTM! Version function now correctly returns dynamic version.

The change from returning a hardcoded constant to calling_get_pip_version() ensures the version reflects the actual wheel being used, whether bundled or from the system directory.


156-172:LGTM! Bootstrap logic simplified and improved.

The refactored bootstrap code:

  • Uses the new context manager for consistent wheel path handling
  • Properly copies wheel files withcopy2 (preserving metadata)
  • Explicitly passes "pip" as the package argument for clarity
  • Usesos.fsdecode for proper path encoding in subprocess calls

The logic is cleaner and more maintainable than the previous multi-package approach.


203-203:LGTM! Explicit package specification improves clarity.

The change to explicitly pass "pip" as an argument makes the uninstall behavior clear and consistent with the refactored bootstrap logic.


13-13:Verify the pip version update.

The pip version was updated from "23.2.1" to "25.1.1", which represents a significant jump. Please verify this version number is correct for CPython 3.13.2 and that the corresponding wheel file exists in the_bundled directory.

#!/bin/bash# Verify the pip wheel file exists with the updated versionfd"pip-25.1.1-py3-none-any.whl" Lib/ensurepip/_bundled/

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@coderabbitaicoderabbitai[bot]coderabbitai[bot] left review comments

At least 1 approving review is required to merge this pull request.

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@youknowone@arihant2math@fanninpm

[8]ページ先頭

©2009-2025 Movatter.jp