mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-15 00:44:10 +09:00
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).
1.5 KiB
1.5 KiB