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

install: make --sync compatible with virtualenvs.options.system-site-packages = true #9863

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

radoering
Copy link
Member

@radoering radoering commented Nov 20, 2024

Pull Request Check List

More or less required for #9855

Without this fix, we try to uninstall untracked system site packages when running poetry install --sync.

  • Added tests for changed code.
  • Updated documentation for changed code.

…te-packages = true`

Without this fix, we try to uninstall untracked system site packages.
@radoering radoering requested a review from a team November 20, 2024 17:11
@abn
Copy link
Member

abn commented Nov 20, 2024

This seems to have a side-effect when poetry installs a managed package to system-site. It does also removes previously installed packages.

podman run --rm -i --entrypoint bash python:3.13 <<EOF
set -xe
python -m pip install -q --root-user-action=ignore --disable-pip-version-check pipx
pipx install --global -q git+https://github.com/python-poetry/poetry.git@refs/pull/9863/head
poetry new foobar
pushd foobar
# we are doing this here to test a specific use case, do not reuse in your environment
poetry config virtualenvs.create false
poetry add pycowsay
poetry remove pycowsay
poetry install --sync
EOF
+ python -m pip install -q --root-user-action=ignore --disable-pip-version-check pipx
+ pipx install --global -q git+https://github.com/python-poetry/poetry.git@refs/pull/9863/head
creating virtual environment...
creating shared libraries...
upgrading shared libraries...
determining package name from 'git+https://github.com/python-poetry/poetry.git@refs/pull/9863/head'...
creating virtual environment...
installing poetry from spec 'git+https://github.com/python-poetry/poetry.git@refs/pull/9863/head'...
done! ✨ 🌟 ✨
  installed package poetry 2.0.0.dev0, installed using Python 3.13.0
  These apps are now globally available
    - poetry
+ poetry new foobar
Created package foobar in foobar
+ pushd foobar
/foobar /
+ poetry config virtualenvs.create false
+ poetry add pycowsay
Skipping virtualenv creation, as specified in config file.
Using version ^0.0.0.2 for pycowsay

Updating dependencies
Resolving dependencies...

Package operations: 1 install, 0 updates, 0 removals

  - Installing pycowsay (0.0.0.2)

Writing lock file
+ poetry remove pycowsay
Skipping virtualenv creation, as specified in config file.
Updating dependencies
Resolving dependencies...

Package operations: 0 installs, 0 updates, 1 removal

  - Removing pycowsay (0.0.0.2)

Writing lock file
+ poetry install --sync
Skipping virtualenv creation, as specified in config file.
Installing dependencies from lock file

Package operations: 0 installs, 0 updates, 6 removals

  - Removing argcomplete (3.5.1)
  - Removing click (8.1.7)
  - Removing packaging (24.2)
  - Removing pipx (1.7.1)
  - Removing platformdirs (4.3.6)
  - Removing userpath (1.9.2)

Installing the current project: foobar (0.1.0)

@radoering
Copy link
Member Author

This seems to have a side-effect when poetry installs a managed package to system-site. It does also removes previously installed packages.

This PR does not change anything about that. You can reproduce the same behavior with Poetry 1.8.4.

If you replace poetry config virtualenvs.create false with poetry config virtualenvs.options.system-site-packages true you will see what this PR changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants