pip-check-reqs icon indicating copy to clipboard operation
pip-check-reqs copied to clipboard

find packages that should be in requirements for a project

Results 28 pip-check-reqs issues
Sort by recently updated
recently updated
newest added

Remove the dead link from pypa guide

It is a pretty common pitfall to run a globally installed command that was reinstalled within the active virtualenv. Right after local virtualenv installation, the shell still resolves installed command...

enhancement

Since `pip-missing-reqs` does not try to actually execute the import statements, but rather parses the AST (see `ImportVisitor` in `common.py`), it doesn't really know when an import is bound to...

bug

When `setup.py` declares `setup(name="...", ...)`, and the `#egg` suffix is omitted, then pip-missing-reqs fails: ```shell Traceback (most recent call last): File "/.../pip-missing-reqs", line 8, in sys.exit(main()) File "/.../lib/python3.9/site-packages/pip_check_reqs/find_missing_reqs.py", line 171,...

bug

When a package is installed as editable, if the package name doesn't follow the import name the `pip-extra-reqs` fails. An example: - `requirements.txt` -> `-e git+ssh://[email protected]/some_org/some-package.git#egg=some-package` - `python` -> `import...

bug

Mac and Windows use case insensitive filesystems which can result in incorrect results at times.

bug
help wanted

when running `pip-missing-reqs` command on my project, if no `requirements.txt` is found the execution stops as expected. The output is an unhandled exception tho, which could be catched and returned...

enhancement
good-first-issue

Running pip-extra-reqs inside a virtual env resulted in every package being displayed as extraneous. I dug around a bit in the code and found that [this if statement](https://github.com/r1chardj0n3s/pip-check-reqs/blob/master/pip_check_reqs/find_extra_reqs.py#L65) is never...

missing-information

I am getting the subject ValueError on Windows, when the directory to inspect is on C: and the current directory is on D:, which happens to be the default on...

bug

Using imp.find_module doesn't work on all my installed pip-packages. Now it fails on the azure-iot-hub module. For example: ```python In [7]: imp.find_module("azure") --------------------------------------------------------------------------- ImportError Traceback (most recent call last) in...

bug