File tree Expand file tree Collapse file tree 5 files changed +34
-6
lines changed
Expand file tree Collapse file tree 5 files changed +34
-6
lines changed Original file line number Diff line number Diff line change 1+ [run]
2+ omit = test/*
Original file line number Diff line number Diff line change 1+ language : python
2+ sudo : false
3+ python :
4+ - " 3.3"
5+ - " 3.4"
6+ - " 3.5"
7+ - " 3.6"
8+ - " pypy3"
9+ addons :
10+ apt :
11+ packages :
12+ - libblas-dev
13+ - liblapack-dev
14+ before_install :
15+ - pip install -U pip
16+ install :
17+ - travis_wait travis_retry pip install -r requirements.txt
18+ - travis_retry pip install python-coveralls
19+ - travis_retry python setup.py install
20+ script : py.test --runslow --cov-config=.coveragerc
21+ after_success :
22+ - coveralls
Original file line number Diff line number Diff line change 55 :target: https://github.com/oujago/NumpyDL/blob/master/LICENSE
66
77
8+ .. image :: https://travis-ci.org/Lasagne/Lasagne.svg
9+ :target: https://travis-ci.org/oujago/NumpyDL
10+
11+ .. image :: https://img.shields.io/coveralls/Lasagne/Lasagne.svg
12+ :target: https://coveralls.io/r/oujago/NumpyDL
13+
14+ .. image :: https://zenodo.org/badge/16974/Lasagne/Lasagne.svg
15+ :target: https://zenodo.org/badge/latestdoi/16974/oujago/NumpyDL
816
917
1018
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22
33import io
4- import numpy as np
54import os
65import re
7- from distutils . core import setup
8- from setuptools import find_packages
6+
7+ import numpy as np
98from setuptools import find_packages
109from setuptools import setup
1110
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments