8000 Increase python requirement to >= 3.8 by kandersolar · Pull Request #2029 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Increase python requirement to >= 3.8 #2029

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 10 commits into from
May 3, 2024
Prev Previous commit
Next Next commit
remove pre-3.8 cruft
  • Loading branch information
kandersolar committed May 1, 2024
commit 584275ce0ebca8cc5673be1ac7aaa875924ce8c7
6 changes: 1 addition & 5 deletions pvlib/version.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
try:
from importlib.metadata import PackageNotFoundError, version
except ImportError:
# for python < 3.8
from importlib_metadata import PackageNotFoundError, version
from importlib.metadata import PackageNotFoundError, version

try:
__version__ = version(__package__)
Expand Down
0