8000 CI: catch windows py38 OSError by jbrockmendel · Pull Request #37659 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI: catch windows py38 OSError #37659

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 6 commits into from
Nov 7, 2020
Merged
Show file tree
Hide file tree
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
catch higher
  • Loading branch information
jbrockmendel committed Nov 6, 2020
commit 0a167112a090fb68c5fce74a3cc9a897bf0c1044
4 changes: 3 additions & 1 deletion pandas/_libs/tslibs/tzconversion.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ from cpython.datetime cimport tzinfo
from numpy cimport int64_t


cdef int64_t tz_convert_utc_to_tzlocal(int64_t utc_val, tzinfo tz, bint* fold=*)
cdef int64_t tz_convert_utc_to_tzlocal(
int64_t utc_val, tzinfo tz, bint* fold=*
) except? -1
cpdef int64_t tz_convert_from_utc_single(int64_t val, tzinfo tz)
cdef int64_t tz_localize_to_utc_single(
int64_t val, tzinfo tz, object ambiguous=*, object nonexistent=*
Expand Down
4 changes: 3 additions & 1 deletion pandas/_libs/tslibs/tzconversion.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,9 @@ cdef inline str _render_tstamp(int64_t val):
# ----------------------------------------------------------------------
# Timezone Conversion

cdef int64_t tz_convert_utc_to_tzlocal(int64_t utc_val, tzinfo tz, bint* fold=NULL):
cdef int64_t tz_convert_utc_to_tzlocal(
int64_t utc_val, tzinfo tz, bint* fold=NULL
) except? -1:
"""
Parameters
----------
Expand Down
0