This repository was archived by the owner on Jun 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,12 @@ language: python
22python :
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"
1411before_install :
1512 - sudo apt-get update -qq
1613 - sudo apt-get install -qq build-essential swig
Original file line number Diff line number Diff line change 22
33virtualenv -p /usr/bin/python2.7 venv
44source venv/bin/activate
5+ python setup.py bdist_egg build
56python setup.py bdist_egg upload
7+ python setup.py bdist_wheel build
68python setup.py bdist_wheel upload
9+ python setup.py sdist build
710python setup.py sdist --formats=gztar upload
811python setup.py sdist --formats=zip upload
912deactivate
1013
1114virtualenv -p /usr/bin/python3.5 venv
1215source venv/bin/activate
16+ python setup.py bdist_egg build
1317python setup.py bdist_egg upload
18+ python setup.py bdist_wheel build
1419python setup.py bdist_wheel upload
20+ python setup.py sdist build
1521python setup.py sdist --formats=gztar upload
1622python setup.py sdist --formats=zip upload
1723deactivate
Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ Basic usage
7777# !/usr/bin/env python
7878from os import environ, path
7979
80- from pocketsphinx import *
81- from sphinxbase import *
80+ from pocketsphinx.pocketsphinx import *
81+ from sphinxbase.sphinxbase import *
8282
8383MODELDIR = " pocketsphinx/model"
8484DATADIR = " pocketsphinx/test/data"
Original file line number Diff line number Diff line change 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' ,
You can’t perform that action at this time.
0 commit comments