Commit 6935b41
authored
Remove user flag from poetry installation (apache#2486)
related to apache#2425
# Rationale for this change
Removing the user flag from the poetry installation to allow users who
want to install poetry into a separate dedicated virtual environment.
This virtual environment must be separate from the environment in which
we install the iceberg-python repo.
## Are these changes tested?
Yes manual testing
```
> python3 -m venv ~/.venvs/poetry
> source ~/.venvs/poetry/bin/activate
> echo $VIRTUAL_ENV
/Users/geru/.venvs/poetry
> python -m pip install -U pip setuptools wheel
> poetry --version
Poetry (version 2.1.4)
> poetry show -v
Using virtualenv: /Users/geru/workspace/iceberg-python/.venv
> poetry install
SUCCESS
```
## Are there any user-facing changes?
no
cc: @kevinjqliu1 parent 83789f0 commit 6935b41
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments