From a2bc6355840cca417c7332971afaf15d89b36611 Mon Sep 17 00:00:00 2001 From: konsti Date: Tue, 19 Dec 2023 22:14:01 +0100 Subject: [PATCH] Add a non-latin project to the ecosystem checks (#9199) We've had bugs related to non-latin scripts, most recently #9145, where just starting a docstring with multi-byte characters would panic. I've added https://github.com/binary-husky/gpt_academic to catch those in the ecosystem checks, it's a popular repo with mixed english and chinese comments and symbols. --- scripts/check_ecosystem.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/check_ecosystem.py b/scripts/check_ecosystem.py index f45fae776c..f13d623391 100755 --- a/scripts/check_ecosystem.py +++ b/scripts/check_ecosystem.py @@ -128,6 +128,7 @@ REPOSITORIES: list[Repository] = [ Repository("docker", "docker-py", "main"), Repository("freedomofpress", "securedrop", "develop"), Repository("fronzbot", "blinkpy", "dev"), + Repository("binary-husky", "gpt_academic", "master"), Repository("ibis-project", "ibis", "master"), Repository("ing-bank", "probatus", "main"), Repository("jrnl-org", "jrnl", "develop"),