File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,8 +96,11 @@ script:
9696# install most deps here
9797- pip install -q .[easy]
9898
99- # xxhash only has linux wheels and triangle is compiled
100- - pip install -q triangle xxhash
99+ # xxhash only has linux wheels and is a soft dependancy
100+ - pip install -q xxhash || true
101+ # triangle is compiled, sometimes fails
102+ # on Python 3.7, and is a soft dependency
103+ - pip install -q triangle || true
101104
102105# run main tests
103106# -W default means that warnings only prints the
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def test_units(self):
4040 extents = scene .extents .copy ()
4141 as_in = scene .convert_units ('in' )
4242 # should all be exactly mm -> in conversion factor
43- assert g .np .allclose (extents / as_in .extents , 25.4 )
43+ assert g .np .allclose (extents / as_in .extents , 25.4 , atol = .001 )
4444
4545
4646if __name__ == '__main__' :
Original file line number Diff line number Diff line change 1- __version__ = '2.33.38 '
1+ __version__ = '2.33.39 '
You can’t perform that action at this time.
0 commit comments