-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update Python version (#1241)
* chore: update Python version
- Loading branch information
Showing
6 changed files
with
41 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[flake8] | ||
|
||
max-line-length = 119 | ||
ignore = W503, E203, E501, E722, F401 | ||
ignore = W503, E203, E501, E722, F401, E701, E704 | ||
|
||
exclude = | ||
docs/conf.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,9 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- python-version: 3.8 | ||
- python-version: 3.9 | ||
env: | ||
TOXENV: flake8 | ||
- python-version: 3.7 | ||
env: | ||
TOXENV: py | ||
- python-version: 3.8 | ||
env: | ||
TOXENV: py | ||
- python-version: 3.9 | ||
env: | ||
TOXENV: py | ||
|
@@ -38,30 +32,44 @@ jobs: | |
- python-version: "3.11" | ||
env: | ||
TOXENV: latest | ||
- python-version: "3.11" | ||
- python-version: "3.12" | ||
env: | ||
TOXENV: py | ||
- python-version: "3.12" | ||
env: | ||
TOXENV: latest | ||
- python-version: "3.13" | ||
env: | ||
TOXENV: py | ||
- python-version: "3.13" | ||
env: | ||
TOXENV: latest | ||
- python-version: "3.13" | ||
env: | ||
TOXENV: twinecheck | ||
- python-version: "3.11" # Keep in sync with tox.ini | ||
- python-version: "3.12" # Keep in sync with tox.ini | ||
env: | ||
TOXENV: docs | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: 'Set up Python ${{ matrix.python-version }}' | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '${{ matrix.python-version }}' | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install language-pack-fr | ||
run: sudo apt-get update && sudo apt-get install language-pack-fr | ||
- name: Install python dependencies | ||
run: pip install tox | ||
- name: tox | ||
run: tox -e py | ||
run: sudo apt-get update && sudo apt-get install -y language-pack-fr build-essential | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install tox | ||
- name: Run tests | ||
run: tox -e ${{ matrix.env.TOXENV }} | ||
- name: Upload coverage.xml to codecov | ||
if: ${{ matrix.python-version == '3.9' && matrix.env.TOXENV == 'latest'}} | ||
if: ${{ matrix.env.python-version == '3.9' && matrix.env.TOXENV == 'latest' }} | ||
uses: codecov/codecov-action@v3 | ||
|
||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: pre-commit/[email protected] | ||
- uses: actions/checkout@v3 | ||
- uses: pre-commit/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters