Skip to content

Commit 4259107

Browse files
committed
test
1 parent 61fc8f3 commit 4259107

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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
@@ -25,7 +25,7 @@ jobs:
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

.github/workflows/release.yml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,39 @@
1-
name: Release
2-
31
on:
42
push:
53
tags:
64
- 'v*'
75

6+
name: Create Release
7+
88
jobs:
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/[email protected]
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 }}
@@ -21,7 +43,6 @@ jobs:
2143
draft: false
2244
prerelease: false
2345

24-
2546
Publish:
2647
needs: Release
2748
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)