Drop support for python 3.5

This commit is contained in:
Kovid Goyal
2020-03-05 18:31:20 +05:30
parent ac149be2bb
commit 81a58186c6
3 changed files with 5 additions and 1 deletions

View File

@@ -20,6 +20,8 @@ from collections import namedtuple
from contextlib import suppress
from pathlib import Path
if sys.version_info[:2] < (3, 6):
raise SystemExit('kitty requires python >= 3.6')
base = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, 'glfw')
glfw = importlib.import_module('glfw')