Skip to content

Commit 63dd0a0

Browse files
committed
fix broken travis #46
1 parent f28302c commit 63dd0a0

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
#addons:
2222
# mariadb: '10.1'
2323
before_install:
24-
- ls -al /etc/mysql
24+
- ls -al /etc/mysql
2525
- sudo service mysql stop
2626
# lower-case-table-names = 1 leaving lower_case_table_names=1 since that is what the docs say
2727
- echo "[mysqld]" > $HOME/.my.cnf

setup.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,9 @@
1717
from os import path
1818

1919
here = path.abspath(path.dirname(__file__))
20-
# with open('requirements.txt') as f:
21-
# require = f.readlines()
22-
# install_reqs = [r.strip() for r in require if
23-
# not r.startswith('http') and not r.startswith('#')]
2420

2521
from pip.req import parse_requirements
26-
2722
install_reqs = parse_requirements('requirements.txt', session=False)
28-
2923
reqs = [str(ir.req) for ir in install_reqs]
3024

3125
# Get the long description from the relevant file

0 commit comments

Comments
 (0)