Skip to content

Commit 58d3832

Browse files
committed
removed needs_python36 decorator
1 parent bea3182 commit 58d3832

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

larray/tests/common.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,4 @@ def meta():
148148
needs_xlrd = pytest.mark.skipif(xlrd is None, reason="xlrd is required for this test")
149149
needs_xlsxwriter = pytest.mark.skipif(xlsxwriter is None, reason="xlsxwriter is required for this test")
150150

151-
needs_python36 = pytest.mark.skipif(sys.version_info < (3, 6), reason="Python 3.6 is required for this test")
152151
needs_python37 = pytest.mark.skipif(sys.version_info < (3, 7), reason="Python 3.7 is required for this test")

larray/tests/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from larray.tests.common import (inputpath, tmp_path, meta,
1313
assert_array_equal, assert_array_nan_equal, assert_larray_equiv, assert_larray_equal,
1414
needs_xlwings, needs_pytables, needs_xlsxwriter, needs_xlrd,
15-
needs_python36, needs_python37)
15+
needs_python37)
1616
from larray import (Array, LArray, Axis, LGroup, union, zeros, zeros_like, ndtest, empty, ones, eye, diag, stack,
1717
clip, exp, where, X, mean, isnan, round, read_hdf, read_csv, read_eurostat, read_excel,
1818
from_lists, from_string, open_excel, from_frame, sequence, nan, IGroup)

0 commit comments

Comments
 (0)