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

In regular expressions, the dot `.` is a metachar that matches every char. To match the literal dot it must be escaped `\.`. Without the escape, that regex would match...

updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.5.5](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.3...v0.5.5)

### Description Due to some intellectual property restrictions, one of my dependencies has a dependency to a wheel file. This 2nd degree dependency is available in my current project, which...

Resolves: #176 Resolves: #183 Requires: python-poetry/poetry#9427 With python-poetry/poetry#9427 we can fix `dependency walk failed` once and for all. The dependency walker becomes as simple as iterating over a flat list...

This change adds a simple option to the export command to allow the exporting of path dependencies as their resolved version number. This is to support a monorepo design where...

### Description `poetry export -o requirements.txt --without-hashes --with-credentials --all-extras` doesn't export all dependencies. ### Workarounds I have to include all extra dependency groups with `--with` or use no groups at...

The ordering of system platform requirements in the marker section produced by poetry-plugin-export appears to be nondeterministic. Repeated invocations of `poetry export --without-hashes -f requirements.txt` in our project will at...

updates: - [github.com/astral-sh/ruff-pre-commit: v0.9.6 → v0.11.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.9.6...v0.11.2) - [github.com/woodruffw/zizmor-pre-commit: v1.3.1 → v1.5.2](https://github.com/woodruffw/zizmor-pre-commit/compare/v1.3.1...v1.5.2)

Support for editable local dependencies was added in #258, but we unfortunately depend on the old behaviour. Would it be possible to add an option to force the old behaviour?...

When upgrading to 1.9.0 from 1.8.0 I noticed that export no longer export extras correctly: pyproject.toml ``` PyJWT = {extras = ["crypto"], version = "==2.9.0"} ``` Old export plugin 1.8.0:...