On Tuesday I attempted to update the citation in the docs, but if you check the documentation you will notice that it still has the old citation https://stdpopsim.readthedocs.io/en/latest/introduction.html
Here are the steps used to diagnose this problem (S/o to @agladstein for the help!)
Thanks again to @agladstein for her help on what to do in these situations!
weird. could it be that readthedocs hasn't updated yet? when i build the docs locally i get the version with this merged PR.
oh i see now-- that's exactly what's going on. looks like there is a dependency / environment issue with RTD
this makes it look like py3.9 isn't compatible with the RTD conda env

You beat me to it @andrewkern :)
Looks like we'll need to pin python 3.8 for now, at least until the rtd/conda/python stars align.
@David-Peede, would you like to have a go at adding a line to requirements/rtd-conda-environment.yml to pin python to version 3.8?
Sure! I can try to take a crack at it today @grahamgower ! But just to make sure I understand correctly when you say "pin python version to version 3.8" does that mean the upper bound will be python version 3.8.6 instead of 3.9.0, or the does that mean the upper bound will be version 3.8.0?
I meant any 3.8.x version. I think, but am not certain, that if you say python=3.8 it will install the latest version that starts with 3.8. If that doesn't do the trick though, you can say python<3.9.
Fixed by #623