From d12feb111164dfe2795d8c23d3b016b78d9c4cf7 Mon Sep 17 00:00:00 2001 From: Jeong-Yoon Lee Date: Fri, 19 Apr 2024 19:18:39 -0700 Subject: [PATCH] remove build for 32-bit systems that are failing --- docs/conf.py | 2 +- pyproject.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 003261f8..05f46566 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -133,7 +133,7 @@ html_theme_options = {"logo_only": False, "display_version": True} # Add any paths that contain custom themes here, relative to this directory. -html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +# html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". diff --git a/pyproject.toml b/pyproject.toml index 3bd41679..a61c31e5 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,3 +72,5 @@ homepage = "https://github.com/uber/causalml" [tool.cibuildwheel] build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"] build-verbosity = 1 +# Skip 32-bit builds +skip = ["*-win32", "*-manylinux_i686"]