This commit is contained in:
Kovid Goyal 2022-11-03 14:54:18 +05:30
parent 8574e136cd
commit 2e07f90baf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 8 deletions

View File

@ -80,17 +80,10 @@ jobs:
- name: Test for trailing whitespace
run: if grep -Inr '\s$' kitty kitty_tests kittens docs *.py *.asciidoc *.rst *.go .gitattributes .gitignore; then echo Trailing whitespace found, aborting.; exit 1; fi
<<<<<<< HEAD
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
=======
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
>>>>>>> 359bf535d (Install Go 1.18 on CI)
python-version: "3.10"
- name: Install Go
uses: actions/setup-go@v3

View File

@ -7,6 +7,7 @@ import re
import shlex
import shutil
import subprocess
import sys
import unittest
from contextlib import contextmanager
from functools import lru_cache