Files
noiseprotocol/setup.py
Brian Warner 90f120f508 fix python_requires= to allow installation under py3.5
According to PEP440, a comma in a version specifier behaves as a logical AND,
so the previous "~=3.5,~=3.6" is equivalent to just "~=3.6", which excludes
python3.5.

This patch replaces it with "~=3.5", which is equivalent to ">=3.5, ==3.*",
so it includes 3.5, 3.6, 3.7, and beyond (but not 4.0).
2018-03-15 12:28:15 -07:00

1.5 KiB