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

Commit 9133c2b

Browse files
committed
Fix build
1 parent 956e8e2 commit 9133c2b

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@ language: python
22
python:
33
- "2.6"
44
- "2.7"
5-
- "3.0"
6-
- "3.1"
75
- "3.2"
86
- "3.3"
97
- "3.4"
108
- "3.5"
119
- "3.5-dev"
1210
- "nightly"
13-
- "pypy"
1411
before_install:
1512
- sudo apt-get update -qq
1613
- sudo apt-get install -qq build-essential swig

pypi.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@
22

33
virtualenv -p /usr/bin/python2.7 venv
44
source venv/bin/activate
5+
python setup.py bdist_egg build
56
python setup.py bdist_egg upload
7+
python setup.py bdist_wheel build
68
python setup.py bdist_wheel upload
9+
python setup.py sdist build
710
python setup.py sdist --formats=gztar upload
811
python setup.py sdist --formats=zip upload
912
deactivate
1013

1114
virtualenv -p /usr/bin/python3.5 venv
1215
source venv/bin/activate
16+
python setup.py bdist_egg build
1317
python setup.py bdist_egg upload
18+
python setup.py bdist_wheel build
1419
python setup.py bdist_wheel upload
20+
python setup.py sdist build
1521
python setup.py sdist --formats=gztar upload
1622
python setup.py sdist --formats=zip upload
1723
deactivate

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 import *
81-
from sphinxbase import *
80+
from pocketsphinx.pocketsphinx import *
81+
from sphinxbase.sphinxbase import *
8282

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

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,12 @@
183183
'License :: OSI Approved :: BSD License',
184184
'Operating System :: Microsoft :: Windows',
185185
'Operating System :: POSIX :: Linux',
186+
'Programming Language :: Python :: 2.6',
186187
'Programming Language :: Python :: 2.7',
188+
'Programming Language :: Python :: 3.2',
189+
'Programming Language :: Python :: 3.3',
187190
'Programming Language :: Python :: 3.4',
191+
'Programming Language :: Python :: 3.5',
188192
'Programming Language :: C'
189193
],
190194
license='BSD',

0 commit comments

Comments
 (0)