fix-python-version.patch 689 B

123456789101112
  1. --- a/mosek/10.0/tools/platform/linux64x86/python/3/setup.py
  2. +++ b/mosek/10.0/tools/platform/linux64x86/python/3/setup.py
  3. @@ -15,7 +15,7 @@ class InstallationError(Exception): pass
  4. major,minor,_,_,_ = sys.version_info
  5. setupdir = pathlib.Path(__file__).resolve().parent
  6. -python_versions = [(3, 6), (3, 7), (3, 8), (3, 9), (3, 10)]
  7. +python_versions = [(3, 6), (3, 7), (3, 8), (3, 9), (3, 10), (3, 11)]
  8. if (major,minor) not in python_versions: raise InstallationError("Unsupported python version")
  9. if platform.system() != "Linux" or platform.architecture()[0] != "64bit" or platform.machine() not in ["AMD64","x86_64"]: raise InstallationError("Invalid system/platform/architecture")