Will Holmgren

Results 118 comments of Will Holmgren

Releasing on pypi and conda-forge is a couple minutes of work. We should just do it this week whatever we have. It would be really nice to speed up the...

@kanderso-nrel go for it. I'm +1 on #1478 if you think it's ready.

@adriesse if a pre-release is acceptable then we can make that within minutes of merging the PR. ``git fetch upstream; git rebase upstream/master; git tag v0.9.3-alpha.1; git push upstream v0.9.3-alpha.1;``...

Thanks for making this issue @thunderfish24 We can make a more informed decision if we have a list of constants that we use in pvlib (or are likely to use...

Thanks @mikofski. I see the wheels are only ~30 MB, which is not so bad (and comparable to pvlib itself), so probably ok for microcomputers. My biggest concern is making...

Here's the list of pvlib functions and what they use from scipy: - ``clearsky.detect_clearsky``: ``from scipy.linalg import hankel`` - ``clearsky.detect_clearsky``: ``from scipy.optimize import minimize_scalar`` - ``pvsystem.v_from_i``: ``from scipy.special import lambertw``...

@mikofski i think you meant 1035. Yes, let's push discussion of a pvlib constants module to another release.

Not opposed to del but would the numpy out kwarg help?

I tried to remove the `TMYData.` at some point, ran into some issue with rst table formatting, and decided it wasn't worth the effort. Maybe things have changed or you're...

`read_csv` also has an `encoding_errors` kwarg since pandas 1.3. I've never used it but might help here. We could also try/except with default encoding and then `iso-8859-01`. Or read the...