poetry
poetry copied to clipboard
Python packaging and dependency management made easy
### Description `poetry --version` is slower than it could be. On my machine, it takes ~200ms. I found that running `poetry --version --no-plugins` is around 1.86x faster. ```sh $ hyperfine...
### Issue Kind Brand new capability ### Description Linehaul is a feature by PyPI that allows querying statistics about the used platforms through BigQuery (https://github.com/pypi/linehaul-cloud-function). Clients query the host environment...
This commit implements a new configuration option `default-group-optionality` that allows users to treat all dependency groups as optional by default. When set to `true`, Poetry will only install the implicit...
# Pull Request Check List Resolves: #10617 - [ ] Added **tests** for changed code. - [x] Updated **documentation** for changed code. We have probably reached a point where installation...
### Description Take this `pyproject.toml`: ``` [project] name = "repro" description = ".." dynamic = ["version"] authors = [] requires-python = '>=3.9, ``` Platform: "macosx-15-arm64" Python version: "3.10" Current installation...
### Description Acutal behavior: ```shell $ poetry env info --path . $ poetry env remove Deleted virtualenv: /Users/beise/dev//.venv $ poetry env use python3.12 Creating virtualenv in /Users/beise/dev//.venv Using virtualenv: ....
# Pull Request Check List Resolves: https://github.com/python-poetry/poetry/issues/10541 Resolves: https://github.com/python-poetry/poetry/issues/10287 - [x] Added **tests** for changed code. - [ ] Updated **documentation** for changed code. ## Summary by Sourcery Resolve the...
- Change language from python to system for poetry-install hook - Add default args: ["--sync"] to poetry-install hook - Update documentation with warning about versions up to 2.2.1 Resolves: #9393...
# Pull Request Check List Relates-to: #9161 - [x] Added **tests** for changed code. - [ ] Updated **documentation** for changed code. # Summary This PR adds new unit tests...
### Description This is derived from #10587, original discussion can be found in here: https://github.com/python-poetry/poetry/pull/10587#discussion_r2443448435. A mimimum example: ```toml # legacy style # before removal [tool.poetry] package-mode = false [tool.poetry.group.foo.dependencies]...