Skip to content

Commit

Permalink
Add Python 3.10 to GitHub CI (#27)
Browse files Browse the repository at this point in the history
* Add Python 3.10 to GitHub CI

* Ignore consider-using-f-string
  • Loading branch information
JeffLIrion committed Jan 13, 2022
1 parent 007418b commit d70618e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ disable=print-statement,
invalid-name,
unexpected-keyword-arg,
useless-object-inheritance,
unspecified-encoding
unspecified-encoding,
consider-using-f-string

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down

0 comments on commit d70618e

Please sign in to comment.