Skip to content

Commit 94d96cc

Browse files
committed
Drop support for mips since upstream did
1 parent 5429f40 commit 94d96cc

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

cmdstanpy/utils/cmdstan.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ def determine_linux_arch() -> str:
3737
arch = "armel"
3838
else:
3939
arch = "armhf"
40-
elif machine == "mips64":
41-
arch = "mips64el"
4240
elif machine == "ppc64el" or machine == "ppc64le":
4341
arch = "ppc64el"
4442
elif machine == "s390x":

docsrc/installation.rst

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,8 @@ run the command
5555
5656
5757
By default, the latest release of CmdStan is installed.
58-
If you require a specific release of CmdStan, CmdStan versions
59-
2.26.1 and *newer* can be installed by specifying
58+
If you require a specific release of CmdStan, versions can be installed by specifying
6059
``cmdstan==VERSION`` in the install command.
61-
Versions before 2.26.1 are not available from conda
62-
but can be downloaded from the CmdStan
63-
`releases <https://github.com/stan-dev/cmdstan/releases>`_ page.
6460

6561
A Conda environment is a directory that contains a specific collection of Conda packages.
6662
To see the locations of your conda environments, use the command
@@ -206,14 +202,14 @@ can be used to override these defaults:
206202

207203
.. code-block:: bash
208204
209-
install_cmdstan -d my_local_cmdstan -v 2.33.0
205+
install_cmdstan -d my_local_cmdstan -v 2.36.0
210206
ls -F my_local_cmdstan
211207
212208
Alternate Linux Architectures
213209
.............................
214210

215211
CmdStan can be installed on Linux for the following non-x86 architectures:
216-
``arm64``, ``armel``, ``armhf``, ``mips64el``, ``ppc64el`` and ``s390x``.
212+
``arm64``, ``armel``, ``armhf``, ``ppc64el`` and ``s390x``.
217213

218214
CmdStanPy will do its best to determine which of these is applicable for your
219215
machine when running ``install_cmdstan``. If the wrong choice is made, or if you

0 commit comments

Comments
 (0)