8000 Deprecate pvlib.forecast by kandersolar · Pull Request #1426 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Deprecate pvlib.forecast #1426

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

Merged
merged 11 commits into from
Mar 17, 2022
Prev Previous commit
Next Next commit
pin pytest < 7.1.0
  • Loading branch information
kandersolar committed Mar 14, 2022
commit 9891d0dcc45e0853de4f890881d83bf8453265c1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
if sys.version_info.major == 3 and sys.version_info.minor == 6:
INSTALL_REQUIRES.append('dataclasses')

TESTS_REQUIRE = ['nose', 'pytest', 'pytest-cov', 'pytest-mock',
# pytest<7.1.0 for https://stackoverflow.com/q/71466065
TESTS_REQUIRE = ['nose', 'pytest<7.1.0', 'pytest-cov', 'pytest-mock',
'requests-mock', 'pytest-timeout', 'pytest-rerunfailures',
'pytest-remotedata']
EXTRAS_REQUIRE = {
Expand Down
0