Skip to content

Commit

Permalink
Fix ci command
Browse files Browse the repository at this point in the history
  • Loading branch information
raychan committed May 3, 2024
1 parent 615ed57 commit 4be061c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
fail-fast: false
matrix:
tox:
- py38
- py310
- '3.8'
- '3.10'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: ${{ matrix.python-version }}
- run: pip install tox
- run: tox -e ${{ matrix.tox }}
- run: tox -e py
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
args:
- -i
- --ignore=E309,E501
- repo: https://gitlab.com/pycqa/flake8.git
- repo: https://github.com/PyCQA/flake8
rev: 3.7.6
hooks:
- id: flake8
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ How to contribute

::

tox -e py27 # Note: use py35 for Python 3.5, see tox.ini for possible values
tox -e py38 # Note: use py310 for Python 3.10, see tox.ini for possible values

#. Commit patches: http://gitref.org/basic/
#. Push to github: ``git pull && git push origin``
Expand Down

0 comments on commit 4be061c

Please sign in to comment.