From 96dc338877d1be84655514f1d3f8be4303469921 Mon Sep 17 00:00:00 2001 From: Douglas Heriot Date: Thu, 3 Aug 2023 03:25:18 -0700 Subject: [PATCH] Remove tox pin to version 3, as tox-factor is no longer required in 4 https://github.com/rpkilby/tox-factor/issues/18 --- .github/workflows/ci.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3cc89dd9..7b271b25 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,8 +35,7 @@ jobs: restore-keys: | ${{ env.cache-version }}-${{ env.run-matrix-combo }}-pip - name: Install tox - # Pin tox 3 because of https://github.com/rpkilby/tox-factor/issues/18 - run: pip install -U tox==3.27.1 tox-factor + run: pip install -U tox - name: Run tox test factors for python ${{ matrix.py.version }} run: > tox @@ -68,7 +67,6 @@ jobs: restore-keys: | ${{ env.cache-version }}-${{ env.run-matrix-combo }}-pip - name: Install tox - # Pin tox 3 because of https://github.com/rpkilby/tox-factor/issues/18 - run: pip install -U tox==3.27.1 tox-factor + run: pip install -U tox - name: Run tox factors ${{ matrix.target }} run: tox -f ${{ matrix.target }}