Skip to content

Commit 77fa9a7

Browse files
committed
@QuLogic review suggestion
1 parent 52f4ab0 commit 77fa9a7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,7 @@ def get_proj_libraries():
242242
This function gets the PROJ libraries to cythonize with
243243
"""
244244
proj_libraries = ["proj"]
245-
if (
246-
os.name == "nt"
247-
and proj_version >= (6, 0, 0)
248-
and proj_version < (6, 3, 0)
249-
):
245+
if os.name == "nt" and (6, 0, 0) <= proj_version < (6, 3, 0):
250246
proj_libraries = [
251247
"proj_{}_{}".format(proj_version[0], proj_version[1])
252248
]

0 commit comments

Comments
 (0)