Skip to content

0.1.4: Support for poetry 1.2.0

Compare
Choose a tag to compare
@arrrrrmin arrrrrmin released this 05 Sep 17:42
· 10 commits to main since this release

What's Changed

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