Skip to content

Commit

Permalink
#83 Run test for 3.11 and up
Browse files Browse the repository at this point in the history
  • Loading branch information
jlhumber committed Oct 19, 2024
1 parent 159e0cc commit 0f3eda1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/geometry/test_geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from fudgeo.geometry import LineString, Point, Polygon


@mark.skipif(version_info[:2] != (3, 11), reason='threshold based on 3.11')
@mark.skipif(version_info[:2] < (3, 11), reason='threshold based on 3.11')
@mark.parametrize('scale, geom_type, expected', [
(1, Point, 0.025),
(1, LineString, 0.0025),
Expand Down

0 comments on commit 0f3eda1

Please sign in to comment.