Skip to content
Snippets Groups Projects
Commit 8e5e9b85 authored by Marius Gedminas's avatar Marius Gedminas
Browse files

Add a python_requires to setup.py

This means `pip install diffoscope` will not try to download new source
distributions that then fail to build, if you run pip with an unsupported
Python version.  (Unfortunately pip will still attempt to download older
releases of diffoscope that did not have python_requires in the metadata.
Still, it'll be useful when you eventually drop support for Python 3.5 and
start requiring newer Pythons.)
parent b618777c
No related branches found
No related tags found
1 merge request!15Add a python_requires to setup.py
......@@ -67,6 +67,7 @@ setup(
'tlsh',
],
},
python_requires='>=3.5',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment