madsjulia / Mads.jl

MADS: Model Analysis & Decision Support
http://mads.gitlab.io
GNU General Public License v3.0
102 stars 20 forks source link

pycall/pyplot api updates #23

Closed stevengj closed 5 years ago

stevengj commented 5 years ago

PyCall 1.90.0 and PyPlot 2.8.0 now released, which change o[:foo] and o["foo"] to o.foo and o."foo", respectively, for python objects o; see also JuliaPy/PyCall.jl#629.

The old getindex methods still work but are deprecated, so you'll want to put out a new release that uses the new methods and REQUIREs the new versions to avoid having zillions of deprecation messages.

montyvesselinov commented 5 years ago

Resolved; Thank you very much!