Skip to content

Commit

Permalink
ci: skip numba for py35
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Apr 24, 2019
1 parent 3d85836 commit 3565ea3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/jit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ def arc_distance(theta_1, phi_1, theta_2, phi_2):
distance_matrix = 2 * np.arctan2(np.sqrt(temp), np.sqrt(1-temp))
return distance_matrix

@pytest.mark.skipif(sys.version_info < (3,6) and sys.version_info[0] != 2,
reason="no support for python3.5 (numba segfaults)")
def test_numba(ds):
ds_original = ds.copy()
#ds.columns['x'] = (ds.columns['x']*1).copy() # convert non non-big endian for now
Expand Down

0 comments on commit 3565ea3

Please sign in to comment.