File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ pull_request :
3
+ types : [opened, reopened, synchronize]
4
+ push :
5
+ branches :
6
+ - main
7
+ - develop
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : checkout repo
14
+ uses : actions/checkout@v1
15
+ with :
16
+ fetch-depth : 1
17
+ id : checkout
18
+ - uses : actions/setup-python@v2
19
+ name : Install Python 3.8
20
+ with :
21
+ python-version : ' 3.8'
22
+ architecture : ' x64'
23
+ - name : Install dependencies
24
+ run : |
25
+ pip install nose coverage
26
+ pip install -e .
27
+ - name : Test
28
+ run : nosetests stl_tools --with-coverage --cover-package=stl_tools
Original file line number Diff line number Diff line change 10
10
EXTENSIONS = [ext_1 ]
11
11
12
12
setup (name = 'stl_tools' ,
13
- version = '0.4.1 ' ,
13
+ version = '0.4.2 ' ,
14
14
install_requires = [
15
- 'numpy= =1.18.1' ,
15
+ 'numpy> =1.18.1' ,
16
16
'scipy' ,
17
17
'matplotlib' ],
18
18
description = "Generate STL files from numpy arrays and text" ,
You can’t perform that action at this time.
0 commit comments