Skip to content

Commit

Permalink
Fix windows python builds
Browse files Browse the repository at this point in the history
  • Loading branch information
texodus committed May 8, 2023
1 parent 46e97ec commit 6a96530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion cpp/perspective/src/include/perspective/step_delta.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/variant/apply_visitor.hpp>

namespace perspective {

Expand Down
6 changes: 3 additions & 3 deletions scripts/_wheel_python.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..`,
Expand Down

0 comments on commit 6a96530

Please sign in to comment.