You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We particularly have a desire to avoid duplicating the Python version into lots of places. The target state would be
python_executable = ".venv/bin/python3"
This means that changing the version of Python in use in a project just involves smashing and recreating the venv, instead of configuration changes in mypy.
The text was updated successfully, but these errors were encountered:
Feature
If
python_version
is omitted andpython_executable
is set, the Python version is determined by runningpython_executable
.Currently
python_version
defaults to the version of Python that is running mypy.Pitch
This reduces the amount of duplicate configuration needed in some cases.
For example, if mypy is installed with pipx then to run it against a venv you would need
We particularly have a desire to avoid duplicating the Python version into lots of places. The target state would be
This means that changing the version of Python in use in a project just involves smashing and recreating the venv, instead of configuration changes in mypy.
The text was updated successfully, but these errors were encountered: