8000 DEPS/TST: tzdata is optional, not required by lithomas1 · Pull Request #47467 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DEPS/TST: tzdata is optional, not required #47467

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 17 commits into from
Aug 12, 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
fix typing
  • Loading branch information
lithomas1 authored Aug 5, 2022
commit f36bbe6d36c9e49c3da4c65dda989be30af54a8d
4 changes: 2 additions & 2 deletions pandas/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@
# "not available" without tzdata/IANA tz data.
# We will set zoneinfo to not found in this case
try:
zoneinfo.ZoneInfo("UTC")
except zoneinfo.ZoneInfoNotFoundError:
zoneinfo.ZoneInfo("UTC") # type: ignore[attr-defined]
except zoneinfo.ZoneInfoNotFoundError: # type: ignore[attr-defined]
zoneinfo = None

# Until https://github.com/numpy/numpy/issues/19078 is sorted out, just suppress
Expand Down
0