From b27e513fb6e17016c82b551e3a966bebc7ab327c Mon Sep 17 00:00:00 2001 From: Michal Pospisil Date: Thu, 11 Apr 2024 11:01:19 +0200 Subject: [PATCH] fix dependency checking Bundling pycurl was not allowed and the check was failing during builds. The check for setuptools_scm was also removed as we no longer bundle dateutil anywhere with pcs-0.11. --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 5d3e28cf..5881c048 100644 --- a/configure.ac +++ b/configure.ac @@ -334,13 +334,11 @@ AM_CONDITIONAL([PIP_HAS_ISOLATION], [test "x$have_isolation" = xyes]) if test "x$tests_only" != "xyes"; then PCS_CHECK_PYMOD([setuptools]) - PCS_CHECK_PYMOD([setuptools-scm]) if test "x$local_build" = "xyes"; then PCS_CHECK_PYMOD([wheel]) fi PCS_CHECK_PYMOD([cryptography]) PCS_CHECK_PYMOD([lxml]) - PCS_CHECK_PYMOD([pycurl]) PCS_CHECK_PYMOD([pyparsing]) # those are kind of problematic. @@ -348,6 +346,7 @@ if test "x$tests_only" != "xyes"; then PCS_CHECK_PYMOD([dacite], [], [yes]) PCS_CHECK_PYMOD([tornado], [>= 6.0.0], [yes]) PCS_CHECK_PYMOD([python-dateutil], [>= 2.7.0], [yes]) + PCS_CHECK_PYMOD([pycurl], [], [yes]) # special case, because we need to download from github AC_PIP_MODULE([pyagentx]) -- 2.44.0