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

MINOR: [CI] Fix ubuntu-lint to not install into system Python #43710

Merged
merged 1 commit into from
Aug 16, 2024

Commits on Aug 15, 2024

  1. MINOR: [CI] Fix ubuntu-lint to not install into system Python

    Currently, ubuntu-lint would install its Python dependencies directly into the system Python, which can fail depending on existing system Python packages.
    
    See example here:
    https://github.com/apache/arrow/actions/runs/10400929007/job/28802420047?pr=43539
    where pip's dependency resolution fails with the following error message:
    ```
    packaging.version.InvalidVersion: Invalid version: '2013-02-16'
    ```
    
    Instead, this PR switches to use a virtual environment, guaranteeing that we're not interfering with the system Python and that we're not bound by already installed Python packages.
    pitrou committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    f2ef537 View commit details
    Browse the repository at this point in the history