File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 strategy :
1616 matrix :
1717 os : [ubuntu-latest, macos-latest, windows-latest]
18- python-version : [3.7, 3.8, 3.9]
18+ python-version : [3.6, 3. 7, 3.8, 3.9]
1919
2020 steps :
2121 - uses : actions/checkout@v2
2525 with :
2626 python-version : ${{ matrix.python-version }}
2727
28- - uses : compas-dev/compas-actions.build@v1.0 .0
28+ - uses : compas-dev/compas-actions.build@v1.1 .0
2929 with :
3030 test_lint : true
3131 test_compas : true
Original file line number Diff line number Diff line change 1- name : Release
2-
31on :
42 push :
53 tags :
64 - ' v*'
75
6+ name : Create Release
7+
88jobs :
9+
10+ Build :
11+ runs-on : ${{ matrix.os }}
12+ strategy :
13+ matrix :
14+ os : [ubuntu-latest, macos-latest, windows-latest]
15+ python-version : [3.6, 3.7, 3.8, 3.9]
16+
17+ steps :
18+ - uses : actions/checkout@v2
19+
20+ - name : Set up Python ${{ matrix.python-version }}
21+ uses : actions/setup-python@v2
22+ with :
23+ python-version : ${{ matrix.python-version }}
24+
25+ - uses : compas-dev/compas-actions.build@v1.1.0
26+ with :
27+ test_lint : true
28+ test_compas : true
29+
930 Release :
31+ needs : Build
1032 runs-on : ubuntu-latest
1133 steps :
12- - uses : actions/checkout@v2
34+ - name : Checkout code
35+ uses : actions/checkout@v2
1336 - name : Create Release
14- id : create_release
1537 uses : actions/create-release@v1
1638 env :
1739 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2143 draft : false
2244 prerelease : false
2345
24-
2546 Publish :
2647 needs : Release
2748 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010### Added
1111- Workflow for changelog check.
12+ - Support for python 3.6
1213
1314### Changed
1415
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def read(*names, **kwargs):
4040 'Operating System :: Microsoft :: Windows' ,
4141 'Programming Language :: Python' ,
4242 'Programming Language :: Python :: 3' ,
43+ 'Programming Language :: Python :: 3.6' ,
4344 'Programming Language :: Python :: 3.7' ,
4445 'Programming Language :: Python :: 3.8' ,
4546 'Programming Language :: Python :: 3.9' ,
You can’t perform that action at this time.
0 commit comments