Kinda followup to this... :)
My project is Python 3-only and my question is basically how I tell distutils/distribute/whoever that this package is Python 3-only?
Not sure if there's some special setting, but this in the beginning of setup.py might help:
import sys
if sys.version_info.major < 3:
print("I'm only for 3, please upgrade")
sys.exit(1)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With