Skip to content
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

Merged
merged 12 commits into from
Mar 12, 2025

Conversation

MarcoGorelli
Copy link
Member

towards #1133

  • Closes #xxxx (Replace xxxx with the Github issue number)
  • Tests added: Please use assert_type() to assert the type of any return value

@MarcoGorelli MarcoGorelli changed the title make some tslibs files pass with pyright-strict make tslibs strptime, timedeltas, and timestamps pass with pyright-strict Mar 7, 2025
Copy link
Collaborator

@Dr-Irv Dr-Irv left a 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

@MarcoGorelli MarcoGorelli marked this pull request as ready for review March 10, 2025 14:01
@MarcoGorelli
Copy link
Member Author

thanks for your review!

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

Yup - in that case, the inner type will be ignored. I've added a test for this anyway 👍

@MarcoGorelli
Copy link
Member Author

MarcoGorelli commented Mar 10, 2025

🤔 not sure what to make of the CI failure - we get /home/runner/work/pandas-stubs/pandas-stubs/pandas-stubs/_libs/tslibs/timestamps.pyi:19:21 - error: Type of "TimeZones" is unknown (reportUnknownVariableType) but only on 3.11

I've removed the # pyright: strict from timestamps.pyi for now, that fixes it

Copy link
Collaborator

@Dr-Irv Dr-Irv left a 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

@MarcoGorelli MarcoGorelli marked this pull request as draft March 10, 2025 19:11
Copy link
Collaborator

@Dr-Irv Dr-Irv left a 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.

@MarcoGorelli
Copy link
Member Author

ok thanks, i'll resume this when UnknownIndex and UnknownSeries are available

@MarcoGorelli
Copy link
Member Author

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 🤔

@Dr-Irv
Copy link
Collaborator

Dr-Irv commented Mar 11, 2025

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 TimeZones out of timestamps.pyi and copying it from _typing.pyi into timestamps.pyi and then it got past the CI. Not ideal.

So I am guessing that because timestamps.pyi is set up to be strict, but _typing.pyi i not, that is why it got confused.

But why that only happens on 3.11 on Mac and Ubuntu is really odd.

@MarcoGorelli MarcoGorelli marked this pull request as ready for review March 11, 2025 19:18
Copy link
Collaborator

@Dr-Irv Dr-Irv left a 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.

Copy link
Collaborator

@Dr-Irv Dr-Irv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @MarcoGorelli

@Dr-Irv Dr-Irv merged commit 69b833c into pandas-dev:main Mar 12, 2025
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants