Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork3.1k
Drop support for running with Python 3.8#17492
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation
This comment has been minimized.
This comment has been minimized.
1 similar comment
This comment has been minimized.
This comment has been minimized.
cdce8p commentedJul 5, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Not sure why the Windows (>=3.9) uses the absolute file path when Linux and MacOS use the relative one. Maybe someone with a Windows system can help debug this? |
hamdanal commentedJul 6, 2024
Not sure why the difference either. The closest change in Python 3.9 related to this I could find is the second bullet point herehttps://docs.python.org/3/whatsnew/3.9.html#other-language-changes but it doesn't explain the difference in behavior between operating systems. It is probably safe to just shorten the file paths in the output traceback before comparing it with the expected output. I tried this patch with the test case "mypyc/test/test_run.py::TestRun::run-loops.test::testForIterable" and it seems to fix the issue: diff --git a/mypyc/test/test_run.py b/mypyc/test/test_run.pyindex 37de192a9..112074047 100644--- a/mypyc/test/test_run.py+++ b/mypyc/test/test_run.py@@ -315,6 +315,7 @@ class TestRun(MypycDataSuite): # TODO: testDecorators1 hangs on 3.12, remove this once fixed proc.wait(timeout=30) output = proc.communicate()[0].decode("utf8")+ output = output.replace(f' File "{os.getcwd()}{os.sep}', ' File "') outlines = output.splitlines() if testcase.config.getoption("--mypyc-showc"): It is kind of a hack but I don't know how to fix it otherwise. Off-topic: why not use a more recent python version like 3.12 or 3.11 for Windows tests so that we don't have to update it every year? |
cdce8p commentedJul 6, 2024
Thanks! Yeah, that seems to be the culprit. Pushed our patch as it's probably the best way forward here, especially since the path deviates depending on the OS used to run the tests.
I don't know the exact reason but I believe the intention is to always test the "oldest" Python release with Windows. Anyway, the issue mentioned earlier persists even in newer versions.That was one of the first things I checked. |
This comment has been minimized.
This comment has been minimized.
hauntsaninja left a comment• edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
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, looks good. I think nice to drop support a little closer to 3.8 end of life, let's at least wait until the 1.11 release is out.
JukkaL commentedJul 8, 2024
I think mypy 1.12 at least should probably still support 3.8. That way we might have a release that supports both 3.13 and 3.8. Runtime support for 3.8 is needed for projects that use mypyc and target 3.8, since it's not possible to run mypyc on a more recent Python version and target an older version. |
cdce8p commentedJul 8, 2024
One option of course. Though I'm not sure that's really necessary. We didn't do that the last time. |
JukkaL commentedJul 8, 2024
Yeah it doesn't seem necessary, but if it doesn't take any significant effort, I think it's still worth doing. 3.8 still appears to be more popular than 3.9 or 3.12, based on PyPI stats (https://pypistats.org/packages/mypy). |
hauntsaninja commentedOct 10, 2024
As of this week, Python 3.8 accounts for 10.5% of all mypy downloads and 4.8% of all downloads of mypy 1.11.* |
cdce8p commentedOct 10, 2024
Would you recommend waiting longer to drop 3.8? I'd say it's probably still fine to do after the 1.12 release. Users interested in new type checking features are more likely to be using newer Python versions. Additionally, it will still be possible to lint 3.8 code (for the time being) and devs can always continue using 1.12 if they are stuck on 3.8. |
hauntsaninja commentedOct 10, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Sorry, I should have added an opinion, I think it's fine to drop. 4.8% isn't a lot and it will drop further. |
JukkaL commentedOct 10, 2024
Let's make the decision when we are closer to 1.13 release? If there have been significant regressions or issues with new functionality in 1.12 (that we haven't fixed in a point release), we can extend 3.8 support to 1.13 so that there are more options for projects that want to support both 3.8 and 3.13. Or we can decide to have one more release supporting 3.8 if it's only minimal extra effort at that point. |
mr-c commentedOct 14, 2024
When this PR is closer to being merged, I suggest running |
cdce8p commentedOct 14, 2024
👍🏻 Yeah, I have planned to do that. It's intentionally omitted here to keep the changes to a minimum. |
This comment has been minimized.
This comment has been minimized.
JukkaL commentedOct 17, 2024
We are aiming at having another release branch created in late October/early November. If we can stick to this schedule, I think we can manage another feature release with 3.8 support, and we'll drop support afterwards. |
cdce8p commentedOct 17, 2024
Sounds good 👍🏻 Just wanted to fix the merge conflicts here. |
This comment has been minimized.
This comment has been minimized.
JukkaL commentedNov 20, 2024
We can merge this after the release branch for 1.14 has been created. |
Co-authored-by: Ali Hamdan <ali.hamdan.dev@gmail.com>
According tomypy_primer, this change doesn't affect type check results on a corpus of open source code. ✅ |
hauntsaninja commentedDec 25, 2024
Eyeballing it looks like 3.8 usage has halved since October. Thanks for keeping this PR fresh! |
2d6b521 intopython:masterUh oh!
There was an error while loading.Please reload this page.
Similar to last year (#15566), start by dropping support for running mypy with Python 3.8.
Users will still be able to type check 3.8 code with
--python-version 3.8until typeshed drops the support for it.It's a bit early as the EOL for Python 3.8 is in ~3 months. However, since the branch for
1.11.0has been cut already, we'd only drop the support with1.12.0which isn't due for another 1-2 months. Additionally dropping3.8now will make it easier to support3.13with its C-API changes and also give us enough time to cleanup the remaining 3.8 code blocks and documentation references.