Skip to content

Commit 61a9123

Browse files
committed
Support python3.9
1 parent 80362e3 commit 61a9123

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

.github/workflows/assess-code.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
- 3.6
1111
- 3.7
1212
- 3.8
13+
- 3.9
1314
steps:
1415
- uses: actions/checkout@v1
1516
- name: Set up Python ${{ matrix.python-version }}

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- "3.6"
77
- "3.7"
88
- "3.8"
9+
- "3.9"
910
addons:
1011
apt:
1112
update: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
## Tools
1818

1919
### Production
20-
- python 3.6, 3.7, 3.8
20+
- python 3.6, 3.7, 3.8, 3.9
2121
- [pytest](https://pypi.org/project/pytest/)
2222

2323
### Development

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.8
2+
python_version = 3.9
33
ignore_missing_imports = True
44
disallow_untyped_defs = False
55
disallow_incomplete_defs = False

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 80
3-
target-version = ["py36", "py37", "py38"]
3+
target-version = ["py36", "py37", "py38", "py39"]
44
exclude = '''
55
/(
66
\.pytest_cache
@@ -20,4 +20,3 @@ ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
2020
verbose = 0
2121
quiet = false
2222
whitelist-regex = []
23-

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ pytest==6.0.1
33
pytest-clarity==0.3.0a0
44
pytest-cov==2.10.1
55
pdbpp==0.10.2
6-
black==19.10b0
6+
black==21.5b2
77
pylint==2.4.4
88
flake8==3.7.9
99
flake8-comprehensions==3.2.2
10-
mypy==0.761
10+
mypy==0.812
1111
coverage==4.5.4
1212
coveralls==1.8.2
1313
interrogate==1.3.1

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ def __packages_to_not_install() -> Sequence[str]:
6464
"Programming Language :: Python :: 3.6",
6565
"Programming Language :: Python :: 3.7",
6666
"Programming Language :: Python :: 3.8",
67+
"Programming Language :: Python :: 3.9",
6768
"Programming Language :: Python :: Implementation :: CPython",
6869
"Operating System :: OS Independent",
6970
f"License :: OSI Approved :: {__license__} License",

0 commit comments

Comments
 (0)