johnthagen / python-blueprint

🐍 Example Python project using best practices 🥇
https://johnthagen.github.io/python-blueprint/
MIT License
582 stars 85 forks source link

Warning that Poetry-bundled `poetry-plugin-export` is deprecated #209

Open johnthagen opened 8 months ago

johnthagen commented 8 months ago

Poetry added a warning that shows up when using nox-poetry:

nox > poetry export --format=requirements.txt --with=nox --with=install --with=test --with=type_check --with=lint --without-hashes
      Warning: poetry-plugin-export will not be installed by default in a future version of Poetry.

There is currently no consensus upstream about when this plugin will be removed and what, if any, better replacement steps will be. Instructing the user to install yet another unlocked, external dependency outside of Poetry's actual control is not very desirable. A better solution would be:

johnthagen commented 1 month ago

This has been addressed in

where plugins can now be defined as required for a project.