diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2023-04-12 19:28:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 19:28:55 +0200 |
commit | a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f (patch) | |
tree | 7c9317a69dd774a2c82b45049cdf22c5f658e2bb /.github/workflows/windows_python.yml | |
parent | e08c02c471bfe1442a1b655effcf70fa3349f97d (diff) | |
download | spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.tar.gz spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.tar.bz2 spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.tar.xz spack-a7ae996e6ba25c5e3463cd2ecd7943a106d7c80f.zip |
Stop installing codecov from pip (#36804)
It shouldn't be needed since we use Codecov's Github action
See here for more information https://community.codecov.com/t/codecov-yanked-from-pypi-all-versions/4259
Diffstat (limited to '.github/workflows/windows_python.yml')
-rw-r--r-- | .github/workflows/windows_python.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/windows_python.yml b/.github/workflows/windows_python.yml index 711fcb4b85..10511741df 100644 --- a/.github/workflows/windows_python.yml +++ b/.github/workflows/windows_python.yml @@ -23,7 +23,7 @@ jobs: python-version: 3.9 - name: Install Python packages run: | - python -m pip install --upgrade pip six pywin32 setuptools codecov pytest-cov clingo + python -m pip install --upgrade pip six pywin32 setuptools pytest-cov clingo - name: Create local develop run: | ./.github/workflows/setup_git.ps1 @@ -47,7 +47,7 @@ jobs: python-version: 3.9 - name: Install Python packages run: | - python -m pip install --upgrade pip six pywin32 setuptools codecov coverage pytest-cov clingo + python -m pip install --upgrade pip six pywin32 setuptools coverage pytest-cov clingo - name: Create local develop run: | ./.github/workflows/setup_git.ps1 @@ -71,7 +71,7 @@ jobs: python-version: 3.9 - name: Install Python packages run: | - python -m pip install --upgrade pip six pywin32 setuptools codecov coverage + python -m pip install --upgrade pip six pywin32 setuptools coverage - name: Build Test run: | spack compiler find |