8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I'm just using poetry in this repro because it's infinitely easier to use than pip, but I'm sure it would repro without it.
poetry
pip
[tool.poetry] name = "test" version = "1" description = "" authors = [""] [tool.poetry.dependencies] python = "^3.12" mypy = "1.8.0" pytest = "^7" types-setuptools = "^69"
# test.py import pytest
> poetry install ... > mypy test.py Success: no issues found in 1 source file > poetry remove types-setuptools ... > mypy test.py .venv\Lib\site-packages\_pytest\monkeypatch.py:323: error: Library stubs not installed for "pkg_resources" [import-untyped] .venv\Lib\site-packages\_pytest\monkeypatch.py:323: note: Hint: "python3 -m pip install types-setuptools" .venv\Lib\site-packages\_pytest\monkeypatch.py:323: note: (or run "mypy --install-types" to install all missing stub packages) .venv\Lib\site-packages\_pytest\monkeypatch.py:323: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports Found 1 error in 1 file (checked 1 source file) > mypy test.py Success: no issues found in 1 source file
The text was updated successfully, but these errors were encountered:
cc3492e
Fix error reporting on cached run after uninstallation of third party…
cfbe004
… library (python#17420) Fixes python#16766, fixes python#17049
Successfully merging a pull request may close this issue.
I'm just using
poetry
in this repro because it's infinitely easier to use thanpip
, but I'm sure it would repro without it.The text was updated successfully, but these errors were encountered: