Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit a01775d

Browse files
committed
Fix travis
1 parent def096c commit a01775d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ before_install:
1212
install:
1313
- python setup.py install --old-and-unmanageable
1414
script:
15+
- sed -i 's/sphinxbase.sphinxbase/sphinxbase/g; s/pocketsphinx.pocketsphinx/pocketsphinx/g' *
1516
- cd pocketsphinx/swig/python/test
1617
- python ./config_test.py
1718
- python ./decoder_test.py

example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env python
22
from os import environ, path
33

4-
from pocketsphinx.pocketsphinx import *
5-
from sphinxbase.sphinxbase import *
4+
from pocketsphinx import *
5+
from sphinxbase import *
66

77
MODELDIR = "pocketsphinx/model"
88
DATADIR = "pocketsphinx/test/data"

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ Basic usage
7777
#!/usr/bin/env python
7878
from os import environ, path
7979

80-
from pocketsphinx.pocketsphinx import *
81-
from sphinxbase.sphinxbase import *
80+
from pocketsphinx import *
81+
from sphinxbase import *
8282

8383
MODELDIR = "pocketsphinx/model"
8484
DATADIR = "pocketsphinx/test/data"

0 commit comments

Comments
 (0)