diff options
author | Bartłomiej T. Listwon <blistwon@gmail.com> | 2021-05-19 08:49:45 +0200 |
---|---|---|
committer | Bartłomiej T. Listwon <blistwon@gmail.com> | 2021-05-19 08:49:45 +0200 |
commit | b6f16671ee0247e10b2dba635362fba26395551f (patch) | |
tree | 7b5dc39973d8dbb7a8e20dc08b5ceb78fd3097bb | |
parent | c340ed63943aa7c02064e536ff302de300a02ec2 (diff) |
pywin32 is no longer necessary for SCons install
https://github.com/SCons/scons/releases/tag/4.1.0
-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 |