Skip to content

Commit

Permalink
Merge pull request #22 from 10sr/python39
Browse files Browse the repository at this point in the history
Add python 3.9 support
  • Loading branch information
10sr authored Sep 19, 2021
2 parents 6727dd7 + 6de03ef commit c174536
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
env:
python_version_codecov: 3.8
python_version_codecov: 3.9
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ blacken:
black .

mypy:
mypy --strict .
# Temporarily check only package directory
mypy --strict flake8_no_implicit_concat/



Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9


[options]
Expand Down

0 comments on commit c174536

Please sign in to comment.