Skip to content

Commit

Permalink
Add missing Python library
Browse files Browse the repository at this point in the history
Distutils is usually included in Python 3.9 distributions.  For
the GitHub Windows Sesrver 2022, it isn't.  Trying adding setuptools,
which pip substitutes behind the scene for distutils.  Distutils is
deprecated and has been removed from later versions of Python.
When we upgrade our clang ources, we can follow what LLVM has done
for later versions of Python.
  • Loading branch information
dtarditi committed Sep 3, 2024
1 parent f58d800 commit 60e46f5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/check-clang-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Add Python setuptools
run: pip3 install setuptools
- name: Checkout Checked C Clang code
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 60e46f5

Please sign in to comment.