v.0.8.6
[0.8.6] - 2024-03-21
Deprecated
Deprecated the keyword parallel used when initializing a Zodipy model. Instead, wether or not ZodiPy will parallelize the line-of-sight integrals is inferred from n_proc, where n_proc=1, which is the default value, means no parallelization.
Example
import zodipy
# no parallelization
model = zodipy.Zodipy()
# parallelization over 10 cores
model = zodipy.Zodipy(n_proc=10)