Skip to content

Commit ef83273

Browse files
committed
use py27
1 parent 732ca0f commit ef83273

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- "3.4"
3+
- "2.7"
44
install:
55
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
66
- bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
from __future__ import print_function
33

44
import os
5-
from setuptools import setup
6-
5+
from distutils.core import setup
76

87
DESCRIPTION = 'Binary Array Linked Data'
98
NAME = 'bald'
@@ -56,7 +55,9 @@ def extract_description():
5655
license='BSD',
5756
url='https://github.com/binary-array-ld/bald',
5857
package_dir={'': 'lib'},
59-
packages=[NAME],
58+
packages=[NAME, '{}.tests'.format(NAME),
59+
'{}.tests.unit'.format(NAME),
60+
'{}.tests.integration'.format(NAME)],
6061
# package_data=extract_package_data(),
6162
classifiers=[
6263
# For full license details, see

0 commit comments

Comments
 (0)