From 016a5d89f7d4242f7889d5dd271f7671c307c8f0 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Thu, 26 Sep 2024 18:31:21 -0400 Subject: [PATCH] Updated Github Actions workflow to use Tox through pip instead of the platform version. --- .github/workflows/tox.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yaml b/.github/workflows/tox.yaml index 73c92139..e908c16d 100644 --- a/.github/workflows/tox.yaml +++ b/.github/workflows/tox.yaml @@ -17,8 +17,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install -U codecov coveralls flake8 mypy pylint pytest tox + python3 -m pip install --upgrade pip + python3 -m pip install -U codecov coveralls flake8 mypy pylint pytest tox - name: Run Tox run: | - tox + python3 -m tox