This repository was archived by the owner on Jan 12, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +67
-51
lines changed Expand file tree Collapse file tree 6 files changed +67
-51
lines changed Original file line number Diff line number Diff line change 1+ name : dephell_discover
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ pytest :
13+ runs-on : ubuntu-latest
14+ strategy :
15+ matrix :
16+ python-version :
17+ - " 3.6"
18+ - " 3.7"
19+ - " 3.8"
20+ - pypy3
21+ steps :
22+ - name : Setup Python
23+ uses : actions/setup-python@v2
24+ with :
25+ python-version : ${{ matrix.python-version }}
26+ - name : Checkout
27+ uses : actions/checkout@v2
28+ - name : Run DepHell
29+ uses : dephell/dephell_action@master
30+
31+ linters :
32+ runs-on : ubuntu-latest
33+ strategy :
34+ matrix :
35+ dephell-env :
36+ - flake8
37+ - typing
38+ steps :
39+ - name : Setup Python
40+ uses : actions/setup-python@v2
41+ with :
42+ python-version : " 3.7"
43+ - name : Checkout
44+ uses : actions/checkout@v2
45+ - name : Run DepHell
46+ uses : dephell/dephell_action@master
47+ with :
48+ dephell-env : ${{ matrix.dephell-env }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Dephell Discover
22
3- [ ![ travis ] ( https://travis-ci.org /dephell/dephell_discover.svg?branch=master )] ( https://travis-ci.org/dephell/dephell_discover )
3+ ![ GitHub Actions Master branch ] ( https://github.com /dephell/dephell_discover/workflows/dephell_discover/badge .svg?branch=master )
44[ ![ appveyor] ( https://ci.appveyor.com/api/projects/status/github/dephell/dephell_discover?svg=true )] ( https://ci.appveyor.com/project/orsinium/dephell-discover )
55[ ![ MIT License] ( https://img.shields.io/pypi/l/dephell-discover.svg )] ( https://github.com/dephell/dephell_discover/blob/master/LICENSE )
66
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