-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
removed analysis.py is still used in ./mypyc/transform/uninit.py #9584
Comments
https://github.com/python/mypy/tree/master/mypyc/analysis still exists |
Fixes #9584 I haven't tested myself but this package should probably be here.
I haven't tried to repro this, but noticed that |
re-adding this module lets the build continue, and then it fails with (building from the release tarball): mypy/fastparse.py:1260: error: "ExtSlice" has no attribute "dims" |
I think these errors are not related to the PR which closes this issue, these failures, I guess, are related to typeshed, maybe @hauntsaninja has some insight on this. |
I fixed these last week in #9552 and #9562. If you pull those in, compiling with mypyc works. |
seen when trying to generate manual pages with 0.790 and python3.9:
I: pybuild base:217: /usr/bin/python3.9 setup.py build
Traceback (most recent call last):
File "/packages/tmp/mypy-0.790/setup.py", line 144, in
from mypyc.build import mypycify
File "/packages/tmp/mypy-0.790/mypyc/build.py", line 43, in
from mypyc.codegen import emitmodule
File "/packages/tmp/mypy-0.790/mypyc/codegen/emitmodule.py", line 41, in
from mypyc.transform.uninit import insert_uninit_checks
File "/packages/tmp/mypy-0.790/mypyc/transform/uninit.py", line 5, in
from mypyc.analysis.dataflow import (
ModuleNotFoundError: No module named 'mypyc.analysis'
apparently the analysis module was removed, however mypyc/transform/uninit.py still uses it
The text was updated successfully, but these errors were encountered: