Better makefile

This commit is contained in:
Yomguithereal 2018-08-23 16:36:41 +02:00
parent 102a3583e2
commit 7b4972f96f
2 changed files with 6 additions and 1 deletions

View File

@ -2,5 +2,8 @@ language: python
python:
- "3.5"
- "3.6"
install: "pip install -r requirements.txt"
install:
- pip install --upgrade pip
- pip install --upgrade setuptools
- pip install -r requirements.txt
script: make

View File

@ -7,7 +7,9 @@ test: build-ext unit
publish: lint test build-ext upload clean
build-ext:
@echo Building native extensions...
find . -name *.pyx | xargs cython && find . -name *.c
@echo
clean:
rm -rf *.egg-info .pytest_cache .ipynb_checkpoints build dist