poetry-plugin-export icon indicating copy to clipboard operation
poetry-plugin-export copied to clipboard

Poetry plugin to export the dependencies to various formats

Results 79 poetry-plugin-export issues
Sort by recently updated
recently updated
newest added

$ poetry export --with=dev --without-hashes -o dev_requirements.txt > got this ERROR message: The `opencv-python` package has the following compatible candidates `[Package('opencv-python', '4.8.1.78')]`; but, the exporter dependency walker previously elected `opencv-python...

Poetry is used to build a package that will be installed in a Docker image: ``` # Build $ poetry build --format wheel $ poetry export --format requirements.txt --output constraints.txt...

## Feature Request CLI export feature Export all versions of requirements. ie. DEV & PROD Example command: `--all` argument ```shell poetry export --without-hashes --all -f requirements.txt ``` Desired output: ```...

I'm using version 1.5.0 of this plugin. ``` $ poetry --version Poetry (version 1.5.1) $ poetry export -f requirements.txt --without-hashes -o requirements/prod.txt The `urllib3` package has the following compatible candidates...

- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] I have searched the [FAQ](https://python-poetry.org/docs/faq/) and general [documentation](https://python-poetry.org/docs/) and believe...

- **Poetry version**: 1.3.2 - **Python version**: 3.8 - **OS version and name**: wsl ubuntu 20.04 - **pyproject.toml**: https://gist.github.com/SunnyR/eedd0f0d974b4c046a660f354eb65dee - [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) stable Poetry version, installed...

The poetry lock command generated a lock file containing 2 different versions of the same package. ``` [[package]] name = "grpcio" version = "1.49.1 ... [[package]] name = "grpcio" version...

https://github.com/python-poetry/poetry-plugin-export/blob/f8cbb9c7ae0586759f8bfe95f32268812a4f6eec/src/poetry_plugin_export/command.py#L67 Errors out with TypeError sequence item 0: expected str instance, tuple found at /usr/local/lib/python3.9/site-packages/poetry_plugin_export/command.py:73 in handle The setting of verbose option arguments in options array joined to add to...

I've configured markers in the pyproject.toml file to install TensorFlow with the Nvidia local version label exclusively when on the aarch64 architecture. However, when exporting to requirements.txt, only the Nvidia...