Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.

Commit 4409895

Browse files
author
ariddell
committed
Update stan source and include paths
1 parent 3a9181a commit 4409895

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# language is set to c to work around travis ci bug
22
# https://github.com/travis-ci/travis-ci/issues/2312
33
language: c
4+
dist: trusty
45
sudo: false
56
os:
67
- linux

MANIFEST.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ prune pystan/stan/src/python
1616
prune pystan/stan/src/test
1717

1818
# unused parts of the stan math source
19-
prune pystan/stan/lib/stan_math*/doc
20-
prune pystan/stan/lib/stan_math*/doxygen
21-
prune pystan/stan/lib/stan_math*/lib/cpplint_*
22-
prune pystan/stan/lib/stan_math*/lib/gtest_*
23-
prune pystan/stan/lib/stan_math*/make
24-
prune pystan/stan/lib/stan_math*/test
19+
prune pystan/stan/lib/stan_math/doc
20+
prune pystan/stan/lib/stan_math/doxygen
21+
prune pystan/stan/lib/stan_math/lib/cpplint_*
22+
prune pystan/stan/lib/stan_math/lib/gtest_*
23+
prune pystan/stan/lib/stan_math/make
24+
prune pystan/stan/lib/stan_math/test

pystan/model.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ def __init__(self, file=None, charset='utf-8', model_name="anon_model",
249249
lib_dir,
250250
pystan_dir,
251251
os.path.join(pystan_dir, "stan", "src"),
252-
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0"),
253-
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0", "lib", "eigen_3.2.9"),
254-
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0", "lib", "boost_1.62.0"),
255-
os.path.join(pystan_dir, "stan", "lib", "stan_math_2.15.0", "lib", "cvodes_2.9.0", "include"),
252+
os.path.join(pystan_dir, "stan", "lib", "stan_math"),
253+
os.path.join(pystan_dir, "stan", "lib", "stan_math", "lib", "eigen_3.3.3"),
254+
os.path.join(pystan_dir, "stan", "lib", "stan_math", "lib", "boost_1.62.0"),
255+
os.path.join(pystan_dir, "stan", "lib", "stan_math", "lib", "cvodes_2.9.0", "include"),
256256
np.get_include(),
257257
]
258258

pystan/stan

Submodule stan updated 2864 files

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ def find_version(*parts):
9999
from distutils.extension import Extension
100100

101101
stan_include_dirs = ['pystan/stan/src',
102-
'pystan/stan/lib/stan_math_2.15.0/',
103-
'pystan/stan/lib/stan_math_2.15.0/lib/eigen_3.2.9',
104-
'pystan/stan/lib/stan_math_2.15.0/lib/boost_1.62.0',
105-
'pystan/stan/lib/stan_math_2.15.0/lib/cvodes_2.9.0/include']
102+
'pystan/stan/lib/stan_math/',
103+
'pystan/stan/lib/stan_math/lib/eigen_3.3.3',
104+
'pystan/stan/lib/stan_math/lib/boost_1.62.0',
105+
'pystan/stan/lib/stan_math/lib/cvodes_2.9.0/include']
106106
stan_macros = [
107107
('BOOST_RESULT_OF_USE_TR1', None),
108108
('BOOST_NO_DECLTYPE', None),

0 commit comments

Comments
 (0)