Skip to content

Commit

Permalink
Update documentation for --requirements-file
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbraza committed Feb 5, 2024
1 parent 4b47c13 commit ab13226
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/flake8_requirements/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .modules import STDLIB_PY3

# NOTE: Changing this number will alter package version as well.
__version__ = "2.0.1"
__version__ = "2.0.2"
__license__ = "MIT"

LOG = getLogger('flake8.plugin.requirements')
Expand Down Expand Up @@ -347,8 +347,9 @@ def add_options(cls, manager):
"Specify the name (location) of the requirements text file. "
"Unless an absolute path is given, the file will be searched "
"relative to the project's root directory. If this option is "
"given, requirements from setup.py, setup.cfg or "
"pyproject.toml will not be taken into account."
"not specified, the plugin look up for requirements in "
"(1) setup.py, (2) setup.cfg, (3) pyproject.toml, and (4) "
"requirements.txt. If specified, look up will not take place."
))
manager.add_option(
"--requirements-max-depth",
Expand Down

0 comments on commit ab13226

Please sign in to comment.