From 6cf8910626f46a5948290980c6df3d6d71aa6f3f Mon Sep 17 00:00:00 2001 From: imperosol Date: Mon, 30 Jun 2025 13:09:24 +0200 Subject: [PATCH] fix: xapian compilation flags --- core/management/commands/install_xapian.sh | 14 +++++++------- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/management/commands/install_xapian.sh b/core/management/commands/install_xapian.sh index 3ca2ac17..2c97f120 100755 --- a/core/management/commands/install_xapian.sh +++ b/core/management/commands/install_xapian.sh @@ -4,13 +4,13 @@ VERSION="$1" # Cleanup env vars for auto discovery mechanism -export CPATH= -export LIBRARY_PATH= -export CFLAGS= -export LDFLAGS= -export CCFLAGS= -export CXXFLAGS= -export CPPFLAGS= +unset CPATH +unset LIBRARY_PATH +unset CFLAGS +unset LDFLAGS +unset CCFLAGS +unset CXXFLAGS +unset CPPFLAGS # prepare rm -rf "$VIRTUAL_ENV/packages" diff --git a/pyproject.toml b/pyproject.toml index 15c75eb6..e8ea292e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,7 +92,7 @@ docs = [ default-groups = ["dev", "tests", "docs"] [tool.xapian] -version = "1.4.25" +version = "1.4.29" [tool.ruff] output-format = "concise" # makes ruff error logs easier to read