Skip to main content

Check for differences between requirements.txt files and your environment.

Project description

https://img.shields.io/github/actions/workflow/status/adamchainz/pip-lock/main.yml.svg?branch=main&style=for-the-badge https://img.shields.io/pypi/v/pip-lock.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Check for differences between requirements.txt files and the current environment.


Working on a Django project? Check out my book Boost Your Django DX which covers many ways to improve your development experience.


Installation

Install with python -m pip install pip-lock.

Python 3.9 to 3.13 supported.

Example usage

Call pip_lock.check_requirements() at your application startup to verify that the current virtual environment matches your requirements file. This gives instant feedback to developers changing branches etc. who would otherwise experience unexpected behaviour or errors due to out of sync requirements.

In a Django project, it makes sense to add the check inside the manage.py file, which is the project’s main entrypoint. You can add a call to pip_lock.check_requirements() after the first import of Django. For example:

#!/usr/bin/env python
import os
import sys
from pathlib import Path


def main():
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "example.settings")

    try:
        from django.core.management import execute_from_command_line
    except ImportError as exc:
        raise ImportError(
            "Couldn't import Django. Are you sure it's installed and "
            "available on your PYTHONPATH environment variable? Did you "
            "forget to activate a virtual environment?"
        ) from exc

    try:
        import pip_lock
    except ImportError:
        raise ImportError(
            "Couldn't import pip-lock. Are you on the right virtualenv and up "
            + "to date?"
        )

    requirements_path = str(Path(__file__).parent / "requirements.txt")
    pip_lock.check_requirements(
        requirements_path,
        post_text="\nRun the following:\n\npython -m pip install -r requirements.txt\n",
    )

    execute_from_command_line(sys.argv)


if __name__ == "__main__":
    main()

API

check_requirements(requirements_file_path: str, post_text: str='') -> None

Exit with exit code 1 and output to stderr if there are mismatches between the environment and requirements file.

requirements_file_path is the path to the requirements.txt file - we recommend using an absolute file path.

post_text is optional text which is displayed after the stderr message. This can be used to display instructions on how to update the requirements.

Example:

check_requirements(
    "requirements.txt",
    post_text="\nRun the following on your host machine: \n\n    vagrant provision\n",
)
There are requirement mismatches with requirements.txt:
    * Package Django has version 1.9.10 but you have version 1.9.0 installed.
    * Package requests has version 2.11.1 but you have version 2.11.0 installed.
    * Package requests-oauthlib is in requirements.txt but not in virtualenv

Run the following on your host machine:

    vagrant provision

get_mismatches(requirements_file_path: str) -> dict[str, tuple[str, str | None]]

Return a dictionary of package names to tuples of (expected_version, actual_version) for mismatched packages.

requirements_file_path is the path to the requirements.txt file - we recommend using an absolute file path.

Example:

>>> get_mismatches("requirements.txt")
{'django': ('1.10.2', '1.9.0'), 'requests': ('2.11.1', '2.9.2'), 'request-oauthlib': ('0.7.0', None)}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pip_lock-2.12.0.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

pip_lock-2.12.0-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file pip_lock-2.12.0.tar.gz.

File metadata

  • Download URL: pip_lock-2.12.0.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pip_lock-2.12.0.tar.gz
Algorithm Hash digest
SHA256 916f8903937ea481bf52ac9509984976d79743b41066b05c4fff39e12f312b63
MD5 936307578b1afa6b2d47296b2dc8cf77
BLAKE2b-256 a3feea1f2fa557641025c87c50385e9d02a4c1a5eb6f56e11b364d035e4737bd

See more details on using hashes here.

File details

Details for the file pip_lock-2.12.0-py3-none-any.whl.

File metadata

  • Download URL: pip_lock-2.12.0-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pip_lock-2.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 78469f53dad9978332d41c37a60d6d5e1222e18c62128a33969e8e042341c6c5
MD5 58dfa4519f5ef7aae0cefcf09f5b2359
BLAKE2b-256 b1844966de2660fff045825af66584f55e4dc8fcef3df37eb5693cd6a60dc636

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page