Skip to content

Commit 19cb6e4

Browse files
committed
Relax requirements and use more strict CI
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com> (cherry picked from commit 288dae0) Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent 5508db9 commit 19cb6e4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,14 @@ jobs:
7575
install:
7676
- *upgrade_python_toolset
7777
- *install_deps
78-
- pip install --upgrade "mypy >= 0.630"
78+
- pip install --upgrade "mypy >= 0.670"
7979
script:
8080
- mypy --strict advanced_descriptors
8181
- <<: *static_analysis
8282
name: "PEP8"
8383
install:
8484
- *upgrade_python_toolset
85-
- pip install --upgrade flake8
85+
- pip install --upgrade flake8 flake8-bugbear
8686
script:
8787
- flake8
8888

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
six >=1.10.0
2-
typing >= 3.6 ; python_version < "3.8"
2+
typing >= 3.6 ; python_version < "3.7"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,6 @@ commands =
112112
[testenv:mypy]
113113
usedevelop = False
114114
deps =
115-
mypy>=0.630
115+
mypy>=0.670
116116
-r{toxinidir}/CI_REQUIREMENTS.txt
117117
commands = mypy --strict advanced_descriptors

0 commit comments

Comments
 (0)