Fix deprecated matplotlib plotting option in monitoring by scipy#67
Fix deprecated matplotlib plotting option in monitoring by scipy#67fzeiser wants to merge 1 commit intogerbaudo:masterfrom
Conversation
francescorubbo
left a comment
There was a problem hiding this comment.
The only explicit requirement is pymc3 in the setup.py script:
https://github.com/gerbaudo/fbu/blob/master/setup.py#L20
Indeed it would be better to have a requirements.txt (and CI, linter, etc..), but I'm no longer actively maintaining this project unfortunately.
There was also an effort at some point to move the project here: https://github.com/pyFBU
| @@ -1,14 +1,15 @@ | |||
| import matplotlib.mlab as mlab | |||
There was a problem hiding this comment.
remove unused import
|
Hello, to confirm what @francescorubbo said, the developments are now going on in https://github.com/pyFBU, where we have for example added a first implementation of gammas as nuisance parameters (for statistical component of Monte-Carlo) |
|
Shall I move the pull request over there? I think it would be nice to mark this repo as archived and link to https://github.com/pyFBU. I don't see many issues/pull requests there. Which are the working branches? + There is two pull requests here which should be considered to be pulled over. The idea/fix in #66 helped me for example to get nuts working ;P |
|
yes please move the PR there. I agree the developments are not visible, but they are ongoing here: |
|
@gerbaudo I do not have rights to change the settings in this repository, would you mind archiving the repository and point to https://github.com/pyFBU when you have a moment? |
This pull request fixes the the deprecated command
mlab.normpdf(since 2.2) and used scipy'sscipy.stats.norminstead. However, I didn't find where you list requirements of fbu, as scipy should obviously be a requirement then.