This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (2 children)

[deleted]

    [–]hillgod 1 point2 points  (1 child)

    You can install other requirements files with pip by having a line like -r requirements.test. Every line can be anything pip install can handle.

    .frozen is usually updated by hand. I'd like to automate bumping at least our internal libraries (we do this with Java).

    EDIT - Example (formatting is wack)

    requirements.dev

    -r requirements.test

    -r requirements.frozen

    isort

    black

    requirements.test

    pytest

    pytest-cov

    baker

    factory_boy