Drop support for python 3.5
This commit is contained in:
parent
ac149be2bb
commit
81a58186c6
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -20,7 +20,7 @@ jobs:
|
||||
cc: [gcc, clang]
|
||||
include:
|
||||
- python: a
|
||||
pyver: 3.5
|
||||
pyver: 3.6
|
||||
sanitize: 0
|
||||
|
||||
- python: b
|
||||
|
||||
@ -66,6 +66,8 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
|
||||
- Workaround for bug in less that causes colors to reset at wrapped lines
|
||||
(:iss:`2381`)
|
||||
|
||||
- Drop support for python 3.5
|
||||
|
||||
|
||||
0.16.0 [2020-01-28]
|
||||
--------------------
|
||||
|
||||
2
setup.py
2
setup.py
@ -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')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user