There are new versions of the LSST Simulations stack available… If you are installing from source can get version 2.3.2 using
eups distrib install lsst_sims -t sims
or
eups distrib install lsst_sims -t sims_2_3_2
Note: when you do eups list, these versions will not appear listed as sims_2.3.2. They will appear as a something like 12.0-22-ugly-github-sha. This is because of a recent update to eups distrib that only causes it to recognize version numbers that begin with a number, but don’t worry, sims_2.3.2 is there.
If you are installing from conda, you can get version 2.3.1 from the channel http://conda.lsst.codes/sims via the usual conda install lsst-sims. Unfortunately, due to some technical difficulties with conda, you will not be able to update an already install LSST Simulations stack. You will need to create a clean environment and install the new stack into that environment. This can be done in conda via
conda create -n my_environment_name
Once that is done, you can enter the new environment with
source activate my_environment_name
You leave the environment with
source deactivate
To see a list of available environment, use
conda info --envs
The only user-facing difference between sims_2.3.1 and sims_2.3.2 is that sims_2.3.2 includes a fix to the MAF metric that measures the time between filter changes. You can install sims_2.3.1 from source using
eups distrib install lsst_sims -t sims_2_3_1