Kevin Anderson
Kevin Anderson
> I suppose this would seen as a "breaking change" and would have to wait until 0.11.0 if we choose to do this. Seems like we can and should do...
> Perhaps it is preferred to wait until a major release? Yes, regardless of how long it's been since the deprecation was put in place, I think we should not...
Thanks @kurt-rhee. I agree that there is significant room for improvement on this topic in our documentation. We do have a bit of this kind of info in a [gallery...
Just looking at the CI, the `quick-benchmarks` jobs is erroring with `ImportError: cannot import name 'Generator' from 'numpy.random'` with numpy=1.16.5. It looks like `Generator` was added in numpy 1.17.0, so...
I almost never run the benchmarks locally. I vaguely recall having problems getting them working on Windows. I'm pretty sure I've run them locally on Linux before. The nightly benchmark...
I guess the problem here is that conda-forge doesn't have everything needed for our "minimum" environment for the new OSX ARM64 platform. I don't think it makes sense to change...
Are those errors in our implementation (i.e. we deviate from the reference), or conceptual inconsistencies in the Marion reference itself? If the latter, maybe we should enable these improvements via...
Yes, these modules can be simulated with pvlib. To use parameters taken from the CEC module database, you must use the CEC performance model, which is available in pvlib with...
I am involved with another project that has a cython module. I am setting up [cibuildwheel](https://github.com/joerick/cibuildwheel) with GH Actions for it and am happy with it so far -- it...
SciPy is adding a vectorized bounded root finder that is accessible directly from python: https://github.com/scipy/scipy/blob/0cec3111f825019598a28b9a03858866d6908d39/scipy/optimize/_zeros_py.py#L1399 I installed a nightly scipy wheel (`1.12.0.dev0+1691.26d4738`) to compare it with `brentq` and `newton` in...