Skip to content

Commit ef557d7

Browse files
committed
Merge pull request #279 from ocefpaf/check_geos_version
Check geos version on Windows
2 parents ea0c850 + 6220787 commit ef557d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
def checkversion(GEOS_dir):
2929
"""check geos C-API header file (geos_c.h)"""
3030
try:
31-
f = open(os.path.join(GEOS_dir,'include/geos_c.h'))
31+
f = open(os.path.join(GEOS_dir, 'include', 'geos_c.h'))
3232
except IOError:
3333
return None
3434
geos_version = None

0 commit comments

Comments
 (0)