0.1.4: Support for poetry 1.2.0
What's Changed
- Support poetry 1.2.0 by @arrrrrmin in #2
Add the following to your .pre-commit-config.yaml
if you run poetry < 1.2.0
:
- repo: https://github.com/arrrrrmin/poetry-requirements
rev: 0.1.4
hooks:
- id: poetry-requirements
always_run: true
args: [-o, requirements.txt, --dev, --without-hashes]
In case you run poetry >= 1.2.0
(poetry support for 1.2.*
is only available with rev >= 0.1.4
):
- repo: https://github.com/arrrrrmin/poetry-requirements
rev: 0.1.4
hooks:
- id: poetry-requirements
always_run: true
args: [-o, requirements.txt, --with, dev, --without-hashes]
Full Changelog: 0.1.3...0.1.4