diff --git a/.cirrus.yml b/.cirrus.yml index de40e4d30..82841f20b 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -5,7 +5,7 @@ macos_M1_native_apple_silicon_py310_task: script: | brew install python@3.10 brew install python-tk@3.10 - /opt/homebrew/opt/python@3.10/bin/python3 -m venv ~/py_310 + /opt/homebrew/bin/python3.10 -m venv ~/py_310 source ~/py_310/bin/activate python -m pip install --upgrade pip python -m pip install --upgrade pytest lxml matplotlib packaging humanize diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index f988f81e6..4de03b7f6 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -32,7 +32,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install --upgrade pytest pyflakes asv pytest-cov codecov lxml matplotlib packaging humanize "mypy<1.0.0" + python -m pip install --upgrade pytest pyflakes asv pytest-cov lxml matplotlib packaging humanize "mypy<1.0.0" - if: ${{matrix.platform == 'macos-latest'}} name: Install MacOS deps run: | @@ -99,7 +99,7 @@ jobs: cd darshan-util/pydarshan/benchmarks python -m asv check -E existing - name: codecov check - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: files: $RUNNER_TEMP/coverage.xml,/home/runner/work/_temp/coverage.xml,/Users/runner/work/_temp/coverage.xml fail_ci_if_error: False