99import numpy as np
1010import pytest
1111
12- from pandas .compat import PY38
1312import pandas .util ._test_decorators as td
1413
1514from pandas import DataFrame
@@ -364,10 +363,6 @@ def test_na_empty_elem_option(datapath, parser):
364363# ATTR_COLS
365364
366365
367- @pytest .mark .skipif (
368- not PY38 ,
369- reason = ("etree alpha ordered attributes < py 3.8" ),
370- )
371366def test_attrs_cols_nan_output (datapath , parser ):
372367 expected = """\
373368 <?xml version='1.0' encoding='utf-8'?>
@@ -383,10 +378,6 @@ def test_attrs_cols_nan_output(datapath, parser):
383378 assert output == expected
384379
385380
386- @pytest .mark .skipif (
387- not PY38 ,
388- reason = ("etree alpha ordered attributes < py3.8" ),
389- )
390381def test_attrs_cols_prefix (datapath , parser ):
391382 expected = """\
392383 <?xml version='1.0' encoding='utf-8'?>
@@ -541,10 +532,6 @@ def test_hierarchical_columns(datapath, parser):
541532 assert output == expected
542533
543534
544- @pytest .mark .skipif (
545- not PY38 ,
546- reason = ("etree alpha ordered attributes < py3.8" ),
547- )
548535def test_hierarchical_attrs_columns (datapath , parser ):
549536 expected = """\
550537 <?xml version='1.0' encoding='utf-8'?>
@@ -614,10 +601,6 @@ def test_multi_index(datapath, parser):
614601 assert output == expected
615602
616603
617- @pytest .mark .skipif (
618- not PY38 ,
619- reason = ("etree alpha ordered attributes < py3.8" ),
620- )
621604def test_multi_index_attrs_cols (datapath , parser ):
622605 expected = """\
623606 <?xml version='1.0' encoding='utf-8'?>
0 commit comments