Skip to content

Commit 90ceb7b

Browse files
committed
build: Don't require file existence
1 parent 1fe2795 commit 90ceb7b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# ruff: noqa: TID252
2-
from .build_feature_flags import BUILD_FEATURE_FLAGS
2+
try:
3+
from .build_feature_flags import BUILD_FEATURE_FLAGS
4+
except ImportError:
5+
BUILD_FEATURE_FLAGS = ""
36

47
__all__ = ["BUILD_FEATURE_FLAGS"]

py-polars/runtime/_polars_runtime_tmpl/build_feature_flags.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)