8000 Bump pandas to 0.25.0; test updates by kandersolar · Pull Request #1448 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Bump pandas to 0.25.0; test updates #1448

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 15 commits into from
Apr 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
UTC -> utc
  • Loading branch information
kandersolar committed Apr 28, 2022
commit 2fbccdd7c633ad8e8b924d23e77554396d4d6681
2 changes: 1 addition & 1 deletion pvlib/solarposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ def sun_rise_set_transit_ephem(times, latitude, longitude,
# older versions of pyephem ignore timezone when converting to its
# internal datetime format, so convert to UTC here to support
# all versions. GH #1449
obs.date = ephem.Date(thetime.astimezone(datetime.timezone.UTC))
obs.date = ephem.Date(thetime.astimezone(datetime.timezone.utc))
sunrise.append(_ephem_to_timezone(rising(sun), tzinfo))
sunset.append(_ephem_to_timezone(setting(sun), tzinfo))
trans.append(_ephem_to_timezone(transit(sun), tzinfo))
Expand Down
0