You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would prevent pip install from complaining like this:
...
Found existing installation: argparse 1.2.1
Not uninstalling argparse at /usr/lib/python2.7, as it is in the standard library.
Can't uninstall 'argparse'. No files were found to uninstall.
...
The text was updated successfully, but these errors were encountered:
The dependency on
argparse
requires it on all Python 2 versions:uwsgitop/setup.py
Lines 15 to 17 in 423ab88
However argparse is part of the standard library in Python 2.7. The dependency should be
This would prevent
pip install
from complaining like this:The text was updated successfully, but these errors were encountered: