summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2025-10-16 02:35:40 -0400
committerEli Schwartz <eschwartz93@gmail.com>2025-10-31 11:31:41 -0400
commit85a5abacfc4de902638d9e3f2ddc0d26ce9cc433 (patch)
tree85d96f61e04f42795ac8605924c00ec314cdbca2 /.github
parent8b74f795e89a9ac6454428745a75a56e7361f91c (diff)
downloadmeson-85a5abacfc4de902638d9e3f2ddc0d26ce9cc433.tar.gz
wrap: automatically utilize truststore, if it is installed
https://truststore.readthedocs.io/ This library allows patching the stdlib ssl module to respect system certificates, which is a common source of "broken internet" for Windows users especially. Fixes: https://github.com/mesonbuild/meson/issues/15121
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index ef5889579..d9a7836c5 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -53,7 +53,7 @@ jobs:
with:
python-version: '3.x'
# Pin mypy to version 1.8, so we retain the ability to lint for Python 3.7
- - run: python -m pip install "mypy==1.8" strictyaml types-PyYAML types-tqdm types-chevron
+ - run: python -m pip install "mypy==1.8" strictyaml truststore types-PyYAML types-tqdm types-chevron
- run: python run_mypy.py --allver
env:
PYTHONUNBUFFERED: 1