-
-
Notifications
You must be signed in to change notification settings - Fork 140
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
make tslibs strptime, timedeltas, and timestamps pass with pyright-strict #1151
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the references that you made Index[Timestamp]
should be DatetimeIndex
. We don't have Index[Timestamp]
in the stubs.
You also should be adding UnknownIndex
because someone could do something like this:
df = pd.DataFrame([[ (some data here) ]], names=['timedata', 'otherdata'])
df = df.set_index('timedata')
Then df.index
will be unknown - we can't track the type, but you might pass it to some of those methods where we used the Index
type
thanks for your review!
Yup - in that case, the inner type will be ignored. I've added a test for this anyway 👍 |
🤔 not sure what to make of the CI failure - we get I've removed the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'll have to let me know when you're good with this, given that the goal was to make strict
work in both PYI files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So in the other PR for StringMethods
, I changed DataFrame.__getitem__()
to return UnknownSeries
, which allows matching it in an overload.
So here, I think if you change DataFrame.index
to be UnknownIndex
and use UnknownIndex
instead of Index[Any]
things would work. Just a hunch.
ok thanks, i'll resume this when |
still can't get Python3.11 to pass in CI /home/runner/work/pandas-stubs/pandas-stubs/pandas-stubs/_libs/tslibs/timestamps.pyi:20:21 - error: Type of "TimeZones" is unknown (reportUnknownVariableType)
/home/runner/work/pandas-stubs/pandas-stubs/pandas-stubs/_libs/tslibs/timestamps.pyi:76:9 - error: Type of parameter "tz" is unknown (reportUnknownParameterType)
/home/runner/work/pandas-stubs/pandas-stubs/pandas-stubs/_libs/tslibs/timestamps.pyi:272:26 - error: Type of parameter "tz" is unknown (reportUnknownParameterType)
/home/runner/work/pandas-stubs/pandas-stubs/pandas-stubs/_libs/tslibs/timestamps.pyi:276:9 - error: Type of parameter "tz" is unknown (reportUnknownParameterType) which I find bizarre because locally it passes for me even on 3.11 🤔 |
And it worked fine on Windows in CI. I got it to work by taking the import of So I am guessing that because But why that only happens on 3.11 on Mac and Ubuntu is really odd. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like we are getting closer. I suggested a few extra tests and some other cleanup.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @MarcoGorelli
towards #1133
assert_type()
to assert the type of any return value