Skip to content

Commit

Permalink
fix: Fix incorrect boost version
Browse files Browse the repository at this point in the history
Boost version mistakenly changed in previous commit.
  • Loading branch information
riddell-stan committed Feb 16, 2021
1 parent a4268ac commit eea1033
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RAPIDJSON_VERSION := 1.1.0
STAN_VERSION := 2.26.1
STANC_VERSION := 2.26.1
MATH_VERSION := 4.0.1
BOOST_VERSION := 1.75.0
BOOST_VERSION := 1.72.0
EIGEN_VERSION := 3.3.9
SUNDIALS_VERSION := 5.6.1
TBB_VERSION := 2019_U8
Expand Down
2 changes: 1 addition & 1 deletion httpstan/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async def build_services_extension_module(program_code: str, extra_compile_args:
model_directory_path.as_posix(),
os.path.join(httpstan_dir, "include"),
os.path.join(httpstan_dir, "include", "lib", "eigen_3.3.9"),
os.path.join(httpstan_dir, "include", "lib", "boost_1.75.0"),
os.path.join(httpstan_dir, "include", "lib", "boost_1.72.0"),
os.path.join(httpstan_dir, "include", "lib", "sundials_5.6.1", "include"),
os.path.join(httpstan_dir, "include", "lib", "tbb_2019_U8", "include"),
]
Expand Down

0 comments on commit eea1033

Please sign in to comment.