Skip to content

Commit

Permalink
chore: upgrade pip in tox gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
ecugol committed Oct 24, 2023
1 parent 4804da0 commit 105028b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tox-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Upgrade pip
run: pip install -U pip
- name: Install tox and any other packages
run: pip install tox coverage
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py37, py38, py39, py310
envlist = py{37,39,310,311}

[testenv]
whitelist_externals = python
Expand Down

0 comments on commit 105028b

Please sign in to comment.