Skip to content

Commit a462c2c

Browse files
author
ykumi
authored
Merge pull request #61 from nttpc/feature/support-py39
add python 3.9 to test with ci
2 parents 06d6bf8 + 83e4497 commit a462c2c

File tree

6 files changed

+408
-381
lines changed

6 files changed

+408
-381
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ executors:
77
parameters:
88
version:
99
type: string
10-
default: "3.8"
10+
default: "3.9"
1111
docker:
1212
- image: circleci/python:<< parameters.version >>
1313

@@ -16,7 +16,7 @@ commands:
1616
parameters:
1717
version:
1818
type: string
19-
default: "3.8"
19+
default: "3.9"
2020
steps:
2121
- restore_cache:
2222
keys:
@@ -34,7 +34,7 @@ jobs:
3434
parameters:
3535
version:
3636
type: string
37-
default: "3.8"
37+
default: "3.9"
3838
executor:
3939
name: python
4040
version: << parameters.version >>
@@ -46,7 +46,7 @@ jobs:
4646
parameters:
4747
version:
4848
type: string
49-
default: "3.8"
49+
default: "3.9"
5050
executor:
5151
name: python
5252
version: << parameters.version >>
@@ -136,14 +136,14 @@ workflows:
136136
- setup:
137137
matrix:
138138
parameters:
139-
version: ["3.6", "3.7", "3.8"]
139+
version: ["3.6", "3.7", "3.8", "3.9"]
140140
filters:
141141
tags:
142142
only: /.*/
143143
- test:
144144
matrix:
145145
parameters:
146-
version: ["3.6", "3.7", "3.8"]
146+
version: ["3.6", "3.7", "3.8", "3.9"]
147147
filters:
148148
tags:
149149
only: /.*/
@@ -154,19 +154,19 @@ workflows:
154154
tags:
155155
only: /.*/
156156
requires:
157-
- test-3.8
157+
- test-3.9
158158
- check-lint:
159159
filters:
160160
tags:
161161
only: /.*/
162162
requires:
163-
- setup-3.8
163+
- setup-3.9
164164
- check-security:
165165
filters:
166166
tags:
167167
only: /.*/
168168
requires:
169-
- setup-3.8
169+
- setup-3.9
170170
- approval-release:
171171
type: approval
172172
filters:

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ repos:
55
- id: black
66

77
- repo: https://gitlab.com/pycqa/flake8
8-
rev: 3.8.3
8+
rev: 3.8.4
99
hooks:
1010
- id: flake8
1111
additional_dependencies:
1212
- flake8-bugbear==20.1.4
1313
- flake8-docstrings==1.5.0
1414

1515
- repo: https://github.com/timothycrosley/isort
16-
rev: 5.5.2
16+
rev: 5.6.4
1717
hooks:
1818
- id: isort
1919

2020
- repo: https://github.com/pre-commit/mirrors-mypy
21-
rev: v0.782
21+
rev: v0.790
2222
hooks:
2323
- id: mypy
2424

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.2.3
4+
5+
Unreleased
6+
7+
- Added support for Python 3.9.
8+
39
## 1.2.2
410

511
Released 2020-09-14

0 commit comments

Comments
 (0)