Skip to content

Use compatible release syntax from PEP 508 (!38)

Resolves #40 (closed)

The use of ~= for a version of a library is the same as a combination of allowing all more modern versions under that major release number. For example,

tensorflow~=1.12

is the functional equivalent of

>= 1.12, == 1.*

This syntax was introduced in PEP 508.

Also require at least minor release of uproot v3.4 or newer.

Edited by Matthew Feickert

Merge request reports