@@ -690,7 +690,7 @@ def test_init(self):
690690 }
691691
692692 @pytest .mark .skipif (
693- # TODO #460 this skip is only necessary for python 3.6 and lower
693+ # TODO #460 #578 this skip is only necessary for python 3.6 and lower
694694 pyproj .__version__ < ComparableVersion ("3.3.1" ),
695695 reason = "pyproj below 3.3.1 does not support int-like strings" ,
696696 )
@@ -731,7 +731,7 @@ def test_to_bbox_dict_from_sequence(self):
731731 }
732732
733733 @pytest .mark .skipif (
734- # TODO #460 this skip is only necessary for python 3.6 and lower
734+ # TODO #460 #578 this skip is only necessary for python 3.6 and lower
735735 pyproj .__version__ < ComparableVersion ("3.3.1" ),
736736 reason = "pyproj below 3.3.1 does not support int-like strings" ,
737737 )
@@ -789,7 +789,7 @@ def test_to_bbox_dict_from_dict(self):
789789 ) == {"west" : 1 , "south" : 2 , "east" : 3 , "north" : 4 , "crs" : 4326 }
790790
791791 @pytest .mark .skipif (
792- # TODO #460 this skip is only necessary for python 3.6 and lower
792+ # TODO #460 #578 this skip is only necessary for python 3.6 and lower
793793 pyproj .__version__ < ComparableVersion ("3.3.1" ),
794794 reason = "pyproj below 3.3.1 does not support int-like strings" ,
795795 )
@@ -933,7 +933,7 @@ class TestNormalizeCrs:
933933 def test_normalize_crs_succeeds_with_correct_crses (self , epsg_input , expected ):
934934 """Happy path, values that are allowed"""
935935 if isinstance (epsg_input , str ) and epsg_input .isnumeric () and pyproj .__version__ < ComparableVersion ("3.3.1" ):
936- # TODO drop this skip once support for python 3.7 is dropped (pyproj 3.3.0 requires at least python 3.8)
936+ # TODO #578 drop this skip once support for python 3.7 is dropped (pyproj 3.3.0 requires at least python 3.8)
937937 pytest .skip ("pyproj below 3.3.1 does not support int-like strings" )
938938
939939 assert normalize_crs (epsg_input ) == expected
@@ -1052,7 +1052,7 @@ def test_normalize_crs_without_pyproj_succeeds_with_wkt2_input(self):
10521052 }
10531053
10541054 @pytest .mark .skipif (
1055- # TODO drop this skip once support for python 3.7 is dropped (pyproj 3.3.0 requires at least python 3.8)
1055+ # TODO #578 drop this skip once support for python 3.7 is dropped (pyproj 3.3.0 requires at least python 3.8)
10561056 pyproj .__version__ < ComparableVersion ("3.3.0" ),
10571057 reason = "PROJJSON format support requires pyproj 3.3.0 or higher" ,
10581058 )
0 commit comments