Skip to content

Commit

Permalink
Issue #460/#259/#453/#458 test requirement pyproj>=3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Aug 25, 2023
1 parent 34368e6 commit 492c637
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"geopandas",
"flake8>=5.0.0",
"time_machine",
"pyproj", # Pyproj is an optional, best-effort runtime dependency # TODO #460 set a high enough minimum version when py3.6 support can be dropped
"pyproj>=3.2.0", # Pyproj is an optional, best-effort runtime dependency
]

docs_require = [
Expand Down
5 changes: 0 additions & 5 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,11 +936,6 @@ def test_normalize_crs_without_pyproj_accept_non_epsg_string(self, caplog):
in caplog.text
)

@pytest.mark.skipif(
# TODO #460 this skip is only necessary for python 3.6 and lower
pyproj.__version__ < ComparableVersion("3.1.0"),
reason="WKT2 format support requires pyproj 3.1.0 or higher",
)
def test_normalize_crs_succeeds_with_wkt2_input(self):
"""Test can handle WKT2 strings.
Expand Down

0 comments on commit 492c637

Please sign in to comment.