From 6a965301eada69090c0d547f9d6a0513b9d64f05 Mon Sep 17 00:00:00 2001 From: Andrew Stein Date: Sun, 7 May 2023 13:06:07 -0400 Subject: [PATCH] Fix windows python builds --- cpp/perspective/src/include/perspective/step_delta.h | 1 - scripts/_wheel_python.js | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/cpp/perspective/src/include/perspective/step_delta.h b/cpp/perspective/src/include/perspective/step_delta.h index 723afcac51..c568bcc057 100644 --- a/cpp/perspective/src/include/perspective/step_delta.h +++ b/cpp/perspective/src/include/perspective/step_delta.h @@ -19,7 +19,6 @@ #include #include #include -#include namespace perspective { diff --git a/scripts/_wheel_python.js b/scripts/_wheel_python.js index ab920cb10f..ef189f8722 100644 --- a/scripts/_wheel_python.js +++ b/scripts/_wheel_python.js @@ -53,9 +53,9 @@ try { // install deps const boost = [ `yum -y install wget libffi-devel`, - `wget https://boostorg.jfrog.io/artifactory/main/release/1.71.0/source/boost_1_71_0.tar.gz >/dev/null`, - `tar xfz boost_1_71_0.tar.gz`, - "cd boost_1_71_0", + `wget https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/boost_1_81_0.tar.gz >/dev/null`, + `tar xfz boost_1_81_0.tar.gz`, + "cd boost_1_81_0", `./bootstrap.sh`, `./b2 -j8 --with-program_options --with-filesystem --with-system install`, `cd ..`,