diff options
| author | Matthias Koeppe <mkoeppe@math.ucdavis.edu> | 2021-11-09 14:15:45 -0800 |
|---|---|---|
| committer | Matthias Koeppe <mkoeppe@math.ucdavis.edu> | 2021-11-09 14:15:45 -0800 |
| commit | 88dd936918f4eeaa61e010b481bbc22b0f58844e (patch) | |
| tree | dc1afbc54acf5149cc2a64a8c70cc48c253d7502 /.github | |
| parent | 7085054dc4c4e936eb3305c6d6141216d88cbf6f (diff) | |
| download | python-setuptools-git-88dd936918f4eeaa61e010b481bbc22b0f58844e.tar.gz | |
.github/workflows/main.yml: Test SETUPTOOLS_USE_DISTUTILS = stdlib, local
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a82b6fd2..265be849 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,9 @@ jobs: test: strategy: matrix: + distutils: + - stdlib + - local python: - pypy3 - 3.6 @@ -16,6 +19,8 @@ jobs: - macos-latest - windows-latest runs-on: ${{ matrix.platform }} + env: + SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }} steps: - uses: actions/checkout@v2 - name: Setup Python |
