I have a small application that runs on fairly recent Linux distributions with Python 2.7+, as well as CentOS and Scientific Linux, which have not yet made the switch to Python 2.7. optparse deprecated from Python 2.7, and frankly, I don't want to support optparse , so I developed an application with argparse . However, argparse does not exist on these older distributions. Moreover, system administrators are quite suspicious of installing backport argparse .
Now what should I do? Stick to optparse ? Create another wrapper around both libraries? To convince system administrators and users (who in most cases just can run the application) to install argparse backport?
source share