[llvm] [GitHub] Add python 3.7 to libclang python test (PR #77219)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 6 20:45:49 PST 2024


================
@@ -30,10 +30,15 @@ jobs:
   check-clang-python:
     # Build libclang and then run the libclang Python binding's unit tests.
     name: Build and run Python unit tests
+    strategy:
+      fail-fast: false
+      matrix:
+        python-version: ["3.7", "3.11"]
----------------
boomanaiden154 wrote:

It looks like Python 3.6 is only supported on Github actions on ubuntu 20.04. Otherwise you basically have to compile it from source. I don't think it's too difficult to setup the job matrix to work with combinations of OSes and python versions?

I think it would be easier to get traction on an RFC by limiting it in scope to the libclang bindings as that should cause significantly less issues than all of LLVM. I definitely wouldn't mind bumping the minimum version across the whole project though...

https://github.com/llvm/llvm-project/pull/77219


More information about the llvm-commits mailing list