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
Argparse has been an included module in python since version 3.2 (https://docs.python.org/3/library/argparse.html).
It would be nice to stop requiring it to be installed for modern python versions.
pip has a way to specify that it's only a requirement for specific python versions: argparse ; python_version <= "3.1"
The text was updated successfully, but these errors were encountered:
Argparse has been an included module in python since version 3.2 (https://docs.python.org/3/library/argparse.html).
It would be nice to stop requiring it to be installed for modern python versions.
pip has a way to specify that it's only a requirement for specific python versions:
argparse ; python_version <= "3.1"
The text was updated successfully, but these errors were encountered: