Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve dependencies management #22

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Commits on Feb 24, 2024

  1. Optimize requirements installation across CI jobs

    The `dev.txt` requirements file contains all needed dependencies, and
    those versions already account for base requirements constraint because
    it is generated by `pip-compile` with the `--constraint` option. That's
    why installing dependencies from the `dev.txt` file is enough."
    Martolivna committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    afc8105 View commit details
    Browse the repository at this point in the history
  2. Switch to pip --constraints for constraints

    Updated the handling of requirements constraints
    by transitioning from using `pip-compile` to directly
    utilizing the `--constraints` option with `pip`.
    Martolivna committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    b0646d8 View commit details
    Browse the repository at this point in the history
  3. Exclude base requirements from dev requirements

    This approach enhances clarity and reduces redundancy
    by isolating dependencies.
    Martolivna committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    23dc13f View commit details
    Browse the repository at this point in the history
  4. Update README for requirements installation

    As development requirements no longer include base requirements,
    both need to be specified during installation. Using `--constraints` is
    unnecessary; the requirements `.txt` files already account for it.
    Martolivna committed Feb 24, 2024
    Configuration menu
    Copy the full SHA
    ac47ca9 View commit details
    Browse the repository at this point in the history