Skip to content

Commit 2162d81

Browse files
committed
Fix proj's version predicate
1 parent 17fa3e1 commit 2162d81

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

conanfile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ def requirements(self):
4949
if install_conan_package("fmt"):
5050
self.requires("fmt/[>=10]")
5151

52-
# 20230829 Conan package for more recent versions seem broken
53-
# https://github.com/conan-io/conan-center-index/issues/17830
5452
if install_conan_package("gdal"):
5553
self.requires("gdal/[>=3.10]")
5654

@@ -77,7 +75,7 @@ def requirements(self):
7775
self.requires("nlohmann_json/[>=3.10]")
7876

7977
if install_conan_package("proj"):
80-
self.requires("proj/[>=9.4]")
78+
self.requires("proj/[>=9.1]")
8179

8280
if install_conan_package("pybind11"):
8381
self.requires("pybind11/[>=2.10.1]")

0 commit comments

Comments
 (0)