LSSTDESC / firecrown

DESC Cosmology Likelihood Framework
BSD 3-Clause "New" or "Revised" License
29 stars 7 forks source link

version wasn't updated for the 1.2.0 release #210

Closed heather999 closed 1 year ago

heather999 commented 1 year ago

See https://github.com/LSSTDESC/firecrown/blob/master/firecrown/version.py

I'm also not able to do something like: print(firecrown.__version__) after importing firecrown.

marcpaterno commented 1 year ago

The version interface is current at least a bit awkward. The following should get the version string:

import firecrown.version
print(firecrown.version.__version__)
marcpaterno commented 1 year ago

Thanks for alerting us. We have updated the version in the 1.3.0 release.

heather999 commented 1 year ago

and thanks for the note about how to get the version!