46 lines
1.6 KiB
Diff
46 lines
1.6 KiB
Diff
From 860e6f89658b8f1784dc14292bb9ac5b7024ee98 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Fri, 5 Aug 2022 08:04:54 +0200
|
|
Subject: [PATCH 135/N] Make sure we always use the stdlib distutils
|
|
|
|
---
|
|
.github/workflows/mingw.yml | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
|
|
index 40b1d5e..6f88865 100644
|
|
--- a/.github/workflows/mingw.yml
|
|
+++ b/.github/workflows/mingw.yml
|
|
@@ -84,6 +84,7 @@ jobs:
|
|
- name: Run Smoke Test (build)
|
|
shell: msys2 {0}
|
|
run: |
|
|
+ export SETUPTOOLS_USE_DISTUTILS=stdlib
|
|
SMOKETESTS="$(pwd)/mingw_smoketests.py"
|
|
cd _build
|
|
./python.exe "$SMOKETESTS"
|
|
@@ -92,6 +93,7 @@ jobs:
|
|
- name: Run tests
|
|
shell: msys2 {0}
|
|
run: |
|
|
+ export SETUPTOOLS_USE_DISTUTILS=stdlib
|
|
IGNOREFILE="$(pwd)/mingw_ignorefile.txt"
|
|
cd _build
|
|
MSYSTEM= ./python.exe -m test -j8 --ignorefile "$IGNOREFILE" -W
|
|
@@ -100,6 +102,7 @@ jobs:
|
|
continue-on-error: true
|
|
shell: msys2 {0}
|
|
run: |
|
|
+ export SETUPTOOLS_USE_DISTUTILS=stdlib
|
|
IGNOREFILE="$(pwd)/mingw_ignorefile.txt"
|
|
cd _build
|
|
MSYSTEM= ./python.exe -m test -j8 --matchfile "$IGNOREFILE" -W
|
|
@@ -131,6 +134,7 @@ jobs:
|
|
- name: Run Smoke Test (installed)
|
|
shell: msys2 {0}
|
|
run: |
|
|
+ export SETUPTOOLS_USE_DISTUTILS=stdlib
|
|
export PYTHONTZPATH="${MINGW_PREFIX}/share/zoneinfo"
|
|
SMOKETESTS="$(pwd)/mingw_smoketests.py"
|
|
cd _build
|