1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2024-12-23 16:46:14 +01:00

No longer check Python versions

This commit is contained in:
Lumir Balhar 2021-12-14 23:22:56 +01:00 committed by Miro Hrončok
parent 07e8536934
commit 799e5ddda2

View File

@ -125,16 +125,6 @@ class CurrentEnv(PythonRun):
return self._executor
def _get_python(self, base_python):
# TODO: Improve version check and error message
version_nodot = "".join(str(p) for p in sys.version_info[:2])
base_python = base_python[0]
if not base_python.endswith(version_nodot):
raise HandledError(
"Python version mismatch. "
f"Current version: {sys.version_info[:2]}, "
f"Requested environment: {base_python}"
)
return PythonInfo(
implementation=sys.implementation,
version_info=sys.version_info,