1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-11-25 22:32:32 +02:00

fix: bump to latest dclark/regexp2

Fixes #805
This commit is contained in:
Alec Thomas
2023-09-09 11:46:02 +10:00
parent a242abf7af
commit 4dd2cbef84
26 changed files with 542 additions and 166 deletions

View File

@@ -5,8 +5,7 @@ from subprocess import check_output
README_FILE = "README.md"
lines = check_output(["go", "run", "./cmd/chroma/main.go", "--list"]).decode("utf-8").splitlines()
lines = check_output(["chroma", "--list"]).decode("utf-8").splitlines()
lines = [line.strip() for line in lines if line.startswith(" ") and not line.startswith(" ")]
lines = sorted(lines, key=lambda l: l.lower())