Andrew Hearin
Andrew Hearin
Thanks for pointing this out @rainwoodman - this is definitely a bug and a failure of unit-testing. Release `v0.7` will be out very soon, I'll make sure a patch makes...
This function was removed from the repo in #979 and will be included in a later release.
Hi @gjsun, sounds like an interesting project! It's true that Halotools does not currently support weights on the angular tpcf. I can leave this feature-request open while preparing the `v0.7`...
Thanks for pointing this out @Firestar-Reimu. For the 0.8 release I focused on linux and mac os system builds, mostly because I wasn't aware of many windows-based halotools users. I...
Not sure offhand, @MatteoSerafino - it looks like could be an incompatibility between halotools and different versions of astropy. How did you try to install the code? With pip, conda,...
@MatteoSerafino - would it work for you to instead install the code from source with a later version of python? For example, the following conda environment should resolve the issue:...
Hmm, dang, sorry that didn't fix the problem. When you activate the `ht3` environment, could you report on which version of python and astropy is installed?
I should have also asked: is it _just_ the testing suite that is the problem? Or have you noticed other functionality impacted? If the lack of existence of `astropy.tests.pytest_plugins` is...
Great, ok, that's good to hear. Since the problem has to do with the existence of `astropy.tests.pytest_plugins` across versions, and since this module is not used by any halotools source...
The NFWProfile class accepts a `mdef` argument that lets you change mass definition. ``` >>> nfw = NFWProfile(mdef='2500m') >>> nfw = NFWProfile(mdef='500c') ``` Alternatively, you can just drill down into...