- Poetry version: 0.12.10
- OS version and name: macOS 10.14.2 Mojave
Question
For example, I remove a package(e.g Arrow) from pyproject.toml by poetry remove arrow and I see the package is removed from pyproject.toml, poetry.lock and my virtualenv. And then I deploy pyproject.toml and poetry.lock.
My teammate download these files and try to install by poetry install. However arrow package is NOT removed from teammate's virtualenv. I want to sync them (pyproject.toml and virtualenv) like pipenv sync. How can I solve this problem?
Question
For example, I remove a package(e.g Arrow) from
pyproject.tomlbypoetry remove arrowand I see the package is removed frompyproject.toml,poetry.lockand my virtualenv. And then I deploypyproject.tomlandpoetry.lock.My teammate download these files and try to install by
poetry install. However arrow package is NOT removed from teammate's virtualenv. I want to sync them (pyproject.toml and virtualenv) likepipenv sync. How can I solve this problem?