Skip to content

Commit

Permalink
devops: test on Python 3.9 (microsoft#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Nov 5, 2020
1 parent 29a173c commit b1f1f4a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
rev: v3.3.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 19.10b0
rev: 20.8b1
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.782
rev: v0.790
hooks:
- id: mypy
- repo: https://gitlab.com/pycqa/flake8
rev: 'a7be77f761a4c29121d6bb6f61c11902281f9105'
rev: '3.8.4'
hooks:
- id: flake8
19 changes: 9 additions & 10 deletions local-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
black==19.10b0
pytest==6.0.1
pytest-cov==2.10.0
mypy==0.782
setuptools==49.2.0
black==20.8b1
pytest==6.1.2
pytest-cov==2.10.1
mypy==0.790
setuptools==50.3.2
twine==3.2.0
twisted==20.3.0
wheel==0.34.2
flake8==3.8.3
pre-commit==2.6.0
Django==3.1.2
wheel==0.35.1
flake8==3.8.4
pre-commit==2.8.2
Django==3.1.3
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Pytest",
Expand Down

0 comments on commit b1f1f4a

Please sign in to comment.