Skip to content

Commit c37c456

Browse files
authored
Merge pull request #1 from Maidbot/SOF-2067/make-mb-cli-easy
make numpy min version 1.18.1 instead of pin
2 parents 5d46fee + 29313e6 commit c37c456

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
EXTENSIONS = [ext_1]
1111

1212
setup(name='stl_tools',
13-
version='0.4.1',
13+
version='0.4.2',
1414
install_requires=[
15-
'numpy==1.18.1',
15+
'numpy>=1.18.1',
1616
'scipy',
1717
'matplotlib'],
1818
description="Generate STL files from numpy arrays and text",

0 commit comments

Comments
 (0)