33from __future__ import annotations
44
55import json
6- import sys
76from pathlib import Path
87
98import pytest
@@ -480,7 +479,6 @@ def test_geometry_from_dxf():
480479 assert sp_geom .Geometry .from_dxf (section_holes_dxf ).geom .wkt == poly
481480
482481
483- @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "requires python 3.9" )
484482def test_geometry_from_3dm_file_simple ():
485483 """Tests loading geometry from a simple .3dm file."""
486484 section = Path (__file__ ).parent .absolute () / "3in x 2in.3dm"
@@ -489,7 +487,6 @@ def test_geometry_from_3dm_file_simple():
489487 assert (test .geom - exp ).is_empty
490488
491489
492- @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "requires python 3.9" )
493490def test_geometry_from_3dm_file_complex ():
494491 """Tests loading geometry from a complex .3dm file."""
495492 section_3dm = Path (__file__ ).parent .absolute () / "complex_shape.3dm"
@@ -501,7 +498,6 @@ def test_geometry_from_3dm_file_complex():
501498 assert (test .geom - exp ).is_empty
502499
503500
504- @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "requires python 3.9" )
505501def test_geometry_from_3dm_file_compound ():
506502 """Tests loading compound geometry from a .3dm file."""
507503 section_3dm = Path (__file__ ).parent .absolute () / "compound_shape.3dm"
@@ -513,7 +509,6 @@ def test_geometry_from_3dm_file_compound():
513509 assert (MultiPolygon ([ii .geom for ii in test .geoms ]) - MultiPolygon (exp )).is_empty
514510
515511
516- @pytest .mark .skipif (sys .version_info >= (3 , 10 ), reason = "requires python 3.9" )
517512def test_geometry_from_3dm_encode ():
518513 """Tests loading compound geometry from a .json file."""
519514 section_3dm = Path (__file__ ).parent .absolute () / "rhino_data.json"
0 commit comments