This repository was archived by the owner on Jan 12, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +64
-50
lines changed Expand file tree Collapse file tree 5 files changed +64
-50
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches :
4+ - master
5+ pull_request :
6+ branches :
7+ - master
8+
9+ jobs :
10+ pytest :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ python-version :
15+ - " 3.6"
16+ - " 3.7"
17+ - " 3.8"
18+ - pypy3
19+ steps :
20+ - name : Setup Python
21+ uses : actions/setup-python@v2
22+ with :
23+ python-version : ${{ matrix.python-version }}
24+ - name : Checkout
25+ uses : actions/checkout@v2
26+ - name : Run DepHell
27+ uses : dephell/dephell_action@master
28+
29+ linters :
30+ runs-on : ubuntu-latest
31+ strategy :
32+ matrix :
33+ dephell-env :
34+ - flake8
35+ - typing
36+ steps :
37+ - name : Setup Python
38+ uses : actions/setup-python@v2
39+ with :
40+ python-version : " 3.7"
41+ - name : Checkout
42+ uses : actions/checkout@v2
43+ - name : Run DepHell
44+ uses : dephell/dephell_action@master
45+ with :
46+ dephell-env : ${{ matrix.dephell-env }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,13 +5,6 @@ build: false
55
66environment :
77 matrix :
8- - PYTHON : " C:\\ Python35-x64"
9- PYTHON_VERSION : " 3.5.x"
10- ARCH : " 64"
11- WINDOWS_SDK_VERSION : " v7.1"
12- PLAT_NAME : " win-amd64"
13- PY_TAG : " cp35"
14-
158 - PYTHON : " C:\\ Python36-x64"
169 PYTHON_VERSION : " 3.6.x"
1710 ARCH : " 64"
@@ -26,6 +19,13 @@ environment:
2619 PLAT_NAME : " win-amd64"
2720 PY_TAG : " cp37"
2821
22+ - PYTHON : " C:\\ Python38-x64"
23+ PYTHON_VERSION : " 3.8.x"
24+ ARCH : " 64"
25+ WINDOWS_SDK_VERSION : " v7.1"
26+ PLAT_NAME : " win-amd64"
27+ PY_TAG : " cp38"
28+
2929init :
3030 - " ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
3131
Original file line number Diff line number Diff line change 11[tool .dephell .main ]
22from = {format = " poetry" , path = " pyproject.toml" }
33to = {format = " setuppy" , path = " setup.py" }
4+ tag = " v."
45
56[tool .dephell .flake8 ]
67from = {format = " pip" , path = " requirements-flake.txt" }
@@ -38,5 +39,5 @@ classifiers = [
3839]
3940
4041[tool .poetry .dependencies ]
41- python = " >=3.5 "
42- attrs = " *"
42+ python = " >=3.6 "
43+ attrs = " *"
Original file line number Diff line number Diff line change 11flake8
22
3+ flake8-comprehensions # https://github.com/adamchainz/flake8-comprehensions
34flake8-alfred # https://github.com/datatheorem/flake8-alfred
45flake8-blind-except # https://github.com/elijahandrews/flake8-blind-except
5- flake8-broken-line # https://github.com/sobolevn/flake8-broken-line
66flake8-bugbear # https://github.com/PyCQA/flake8-bugbear
77flake8-commas # https://github.com/PyCQA/flake8-commas
8- flake8-comprehensions # https://github.com/adamchainz/flake8-comprehensions
98flake8-debugger # https://github.com/JBKahn/flake8-debugger
109flake8-logging-format # https://github.com/globality-corp/flake8-logging-format
1110flake8-mutable # https://github.com/ebeweber/flake8-mutable
@@ -14,3 +13,10 @@ flake8-quotes # https://github.com/zheller/flake8-quotes
1413flake8-tidy-imports # https://github.com/adamchainz/flake8-tidy-imports
1514flake8-variables-names # https://github.com/best-doctor/flake8-variables-names
1615pep8-naming # https://github.com/PyCQA/pep8-naming
16+
17+
18+ # flake8-string-format # https://github.com/xZise/flake8-string-format
19+ # disabled: https://github.com/xZise/flake8-string-format/issues/16
20+
21+ # flake8-broken-line # https://github.com/sobolevn/flake8-broken-line
22+ # disabled: https://github.com/sobolevn/flake8-broken-line/issues/38
You can’t perform that action at this time.
0 commit comments