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
Next Next commit
DEPS/TST: tzdata is optional, not required
  • Loading branch information
lithomas1 authored Jun 22, 2022
commit 2939c10e07d825a247382e47f615d84d7a2f80f4
7 changes: 7 additions & 0 deletions pandas/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@
if pd.compat.PY39:
# Import "zoneinfo" could not be resolved (reportMissingImports)
import zoneinfo # type: ignore[no-redef]
# Although zoneinfo can be imported in Py39, it is effectively
# "not available" without tzdata/IANA tz data.
# We will set zoneinfo to not found in this case
try:
utc_zoneinfo = ZoneInfo("UTC")
except ZoneInfoNotFoundError:
zoneinfo = None

# Until https://github.com/numpy/numpy/issues/19078 is sorted out, just suppress
suppress_npdev_promotion_warning = pytest.mark.filterwarnings(
Expand Down
0