File tree 3 files changed +6
-5
lines changed 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,8 @@ on: [pull_request]
5
5
jobs :
6
6
python-check :
7
7
strategy :
8
- max-parallel : 4
9
8
matrix :
10
- python-version : [3.6, 3.7 , 3.8 ]
9
+ python-version : [3.6, 3.8 , 3.9 ]
11
10
platform : [ubuntu-latest, macos-latest, windows-latest]
12
11
runs-on : ${{ matrix.platform }}
13
12
steps :
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ flake8 = "^3.6"
63
63
pytest-cov = " ^2.6"
64
64
pytest-mock = " ^2.0"
65
65
codecov = " ^2.0"
66
- mypy = " ^0.770 "
66
+ mypy = " 0.910 "
67
67
mkdocs = " ^1.0"
68
68
mkdocs-material = " ^4.1"
69
69
isort = " ^5.7.0"
@@ -72,6 +72,8 @@ pydocstyle = "^5.0.2"
72
72
pre-commit = " ^2.6.0"
73
73
pytest-regressions = " ^2.2.0"
74
74
pytest-freezegun = " ^0.4.2"
75
+ types-PyYAML = " ^5.4.3"
76
+ types-termcolor = " ^0.1.1"
75
77
76
78
[tool .poetry .scripts ]
77
79
cz = " commitizen.cli:main"
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ def config():
13
13
return _config
14
14
15
15
16
- @pytest .fixture ()
16
+ @pytest .fixture () # type: ignore
17
17
def changelog_path () -> str :
18
18
return os .path .join (os .getcwd (), "CHANGELOG.md" )
19
19
20
20
21
- @pytest .fixture ()
21
+ @pytest .fixture () # type: ignore
22
22
def config_path () -> str :
23
23
return os .path .join (os .getcwd (), "pyproject.toml" )
You can’t perform that action at this time.
0 commit comments