diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-05-19 13:12:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 13:12:00 +0200 |
commit | 26f0a8648285b70012ec82a31883a0e1d79fad62 (patch) | |
tree | 8eb6f30c7418e22dd3846e986e0d14e8244ad261 | |
parent | 804dd7bb46b04755e924f779d877c99d531475a8 (diff) | |
parent | b6f16671ee0247e10b2dba635362fba26395551f (diff) |
Merge pull request #48833 from Pineapple/remove-pywin32-from-github-workflow
pywin32 is no longer necessary for SCons install
-rw-r--r-- | .github/workflows/windows_builds.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index b7cc127226..d1db449ab0 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -46,7 +46,7 @@ jobs: - name: Configuring Python packages run: | python -c "import sys; print(sys.version)" - python -m pip install scons pywin32 + python -m pip install scons python --version scons --version @@ -102,7 +102,7 @@ jobs: - name: Configuring Python packages run: | python -c "import sys; print(sys.version)" - python -m pip install scons pywin32 + python -m pip install scons python --version scons --version |