With all tests passing on Python 3.6, this commit declare support for
Python 3.6+. We can lower the requirement later if necessary.
Details
Diff Detail
- Build Status
Buildable 41970 Build 42312: arc lint + arc unit
Event Timeline
setup.py | ||
---|---|---|
12 | The {:2] is not necessary here due to how comparison works on tuples (from https://docs.python.org/3/reference/expressions.html#value-comparisons): Lexicographical comparison between built-in collections works as follows: For two collections to compare equal, they must be of the same type, have the same length, and each pair of corresponding elements must compare equal (for example, [1,2] == (1,2) is false because the type is not the same). Collections that support order comparison are ordered the same as their first unequal elements (for example, [1,2,x] <= [1,2,y] has the same value as x <= y). If a corresponding element does not exist, the shorter collection is ordered first (for example, [1,2] < [1,2,3] is true). So any (3, 6, *) will be greater than (3, 6) and any (3, 5, *) will be smaller than (3, 6) | |
131 | Are you aware of a more succint way? |
setup.py | ||
---|---|---|
131 | No, this is the fist time I can this used this way. |