-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add pandas and numpy lower bound to requirements.txt #34
Labels
bug
Something isn't working
Comments
More specifically, this code failed: s,i,r = 'S','I','R'
p = 0.1
delta = {
(i,i): {(i,r): p},
(s,i): {(s,r): p, (i,i): 1-p},
(r,i): {(r,r): p},
}
n = 10**6
init = {i:1, s: n-1}
sim = pp.Simulation(init, delta)
sim.run(100, 0.1)
sim.history.plot() on the last line with
|
dave-doty
changed the title
add pandas lower bound to requirements.txt
add pandas and numpy lower bound to requirements.txt
Oct 4, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I ran into this confusing error due to having pandas 0.24.2 installed: numpy/numpy#18355
Upgrading to 1.3.3 fixed in. Not sure which version is required.
I got another error with an old version of numpy, something about numpy.random.bit_generator not defined. Might be best to define lower bounds for all the dependencies just in case people have old installations.
The text was updated successfully, but these errors were encountered: