Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
diff --git a/cmdstanpy/utils/cmdstan.py b/cmdstanpy/utils/cmdstan.py
|
|
index 227d97a..27c3ccc 100644
|
|
--- a/cmdstanpy/utils/cmdstan.py
|
|
+++ b/cmdstanpy/utils/cmdstan.py
|
|
@@ -163,19 +163,7 @@ def cmdstan_path() -> str:
|
|
if 'CMDSTAN' in os.environ and len(os.environ['CMDSTAN']) > 0:
|
|
cmdstan = os.environ['CMDSTAN']
|
|
else:
|
|
- cmdstan_dir = os.path.expanduser(os.path.join('~', _DOT_CMDSTAN))
|
|
- if not os.path.exists(cmdstan_dir):
|
|
- raise ValueError(
|
|
- 'No CmdStan installation found, run command "install_cmdstan"'
|
|
- 'or (re)activate your conda environment!'
|
|
- )
|
|
- latest_cmdstan = get_latest_cmdstan(cmdstan_dir)
|
|
- if latest_cmdstan is None:
|
|
- raise ValueError(
|
|
- 'No CmdStan installation found, run command "install_cmdstan"'
|
|
- 'or (re)activate your conda environment!'
|
|
- )
|
|
- cmdstan = os.path.join(cmdstan_dir, latest_cmdstan)
|
|
+ cmdstan = '@cmdstan@'
|
|
os.environ['CMDSTAN'] = cmdstan
|
|
validate_cmdstan_path(cmdstan)
|
|
return os.path.normpath(cmdstan)
|