Skip to content

Commit

Permalink
Define patch version for python and compatible tox version.
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Sep 22, 2023
1 parent f3579f6 commit c04f1c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.8"]
python-version: ["3.6.15", "3.8.18"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
pip install -r requirements-ci.txt
- name: "Run tox for ${{ matrix.python-version }}"
run: |
tox
3 changes: 3 additions & 0 deletions requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Different versions of tox are required
tox==3.28.0 ; python_version == "3.6"
tox==4.6.4 ; python_version == "3.8"

0 comments on commit c04f1c9

Please sign in to comment.