From 0c99ce91f8f855c25e0b850f47ea82ef043baacd Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Sun, 9 Jun 2024 17:17:48 +0200 Subject: [PATCH] Meta: Use Python>=3.10 in the test262 action The new Wasm test generation script needs this. --- .github/workflows/libjs-test262.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 524e2775343045..4a5813b8681b42 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -59,7 +59,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: '>=3.10' - name: Install Python dependencies # The setup-python action set default python to python3.x. Note that we are not using system python here.