Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upBug - python3.8 some imports which are using metadata module doesn't work #807
Comments
uriariel
added a commit
to uriariel/bpython
that referenced
this issue
May 27, 2020
issue bpython#807)
|
I've made a pull request fixing this issue |
|
Thanks for the PR. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After upgrading to python3.8 I've started to encounter a strange error, when I'm importing some modules (for example jsonschema) I'm getting a importlib.metadata.PackageNotFoundError.
And when using vanilla python shell everything is working fine.
`bpython3 -p (echo 'import jsonschema' | psub )
bpython version 0.18 on top of Python 3.8.2 /usr/bin/python3
python3 -i (echo 'import jsonschema; print("ok")' | psub ) ok