Skip to content

Commit 98ea57c

Browse files
authored
Merge pull request #578 from stan-dev/docs/570-install-instructions
Docs/570 install instructions
2 parents 3777785 + 7aec6fe commit 98ea57c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1985
-481
lines changed

cmdstanpy/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def compile(
482482
src_time = os.path.getmtime(self._stan_file)
483483
exe_time = os.path.getmtime(exe_target)
484484
if exe_time > src_time and not force:
485-
get_logger().info('found newer exe file, not recompiling')
485+
get_logger().debug('found newer exe file, not recompiling')
486486
if self._exe_file is None: # called from constructor
487487
self._exe_file = exe_target
488488
return

cmdstanpy/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ def install_cmdstan(
12801280
to allow for transient network outages. Builds CmdStan executables
12811281
and tests the compiler by building example model ``bernoulli.stan``.
12821282
1283-
:param version: CmdStan version string, e.g. "2.24.1".
1283+
:param version: CmdStan version string, e.g. "2.29.2".
12841284
Defaults to latest CmdStan release.
12851285
12861286
:param dir: Path to install directory. Defaults to hidden directory

docsrc/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,3 +445,6 @@ def emit(self, record):
445445
r">>> |\.\.\. |\$ |In \[\d*\]: | {2,5}\.\.\.: | {5,8}: "
446446
)
447447
copybutton_prompt_is_regexp = True
448+
449+
# speed up build if editing the docs
450+
# nbsphinx_execute = 'never'

0 commit comments

Comments
 (0)