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

Commit a2f0c78

Browse files
committed
Fix pypi
1 parent 8083bde commit a2f0c78

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

pypi.sh

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,27 @@
11
#!/usr/bin/env bash
2+
rm -rf venv dist build *.egg-info
3+
rm -rf ./sphinxbase/swig/python/sphinxbase.py
4+
rm -rf ./pocketsphinx/swig/python/pocketsphinx.py
25

36
virtualenv -p /usr/bin/python2.7 venv
47
source venv/bin/activate
58
python setup.py bdist_egg build
69
python setup.py bdist_egg upload
7-
python setup.py bdist_wheel build
8-
python setup.py bdist_wheel upload
910
python setup.py sdist build
1011
python setup.py sdist --formats=gztar upload
1112
python setup.py sdist --formats=zip upload
1213
deactivate
1314

15+
rm -rf venv dist build *.egg-info
16+
rm -rf ./sphinxbase/swig/python/sphinxbase.py
17+
rm -rf ./pocketsphinx/swig/python/pocketsphinx.py
18+
1419
virtualenv -p /usr/bin/python3.5 venv
1520
source venv/bin/activate
1621
python setup.py bdist_egg build
1722
python setup.py bdist_egg upload
18-
python setup.py bdist_wheel build
19-
python setup.py bdist_wheel upload
20-
python setup.py sdist build
21-
python setup.py sdist --formats=gztar upload
22-
python setup.py sdist --formats=zip upload
2323
deactivate
24+
25+
rm -rf venv dist build *.egg-info
26+
rm -rf ./sphinxbase/swig/python/sphinxbase.py
27+
rm -rf ./pocketsphinx/swig/python/pocketsphinx.py

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148

149149
setup(
150150
name='pocketsphinx',
151-
version='0.0.6',
151+
version='0.0.8',
152152
description='Python interface to CMU SphinxBase and PocketSphinx libraries',
153153
long_description=__doc__,
154154
author='Dmitry Prazdnichnov',
@@ -183,8 +183,10 @@
183183
'License :: OSI Approved :: BSD License',
184184
'Operating System :: Microsoft :: Windows',
185185
'Operating System :: POSIX :: Linux',
186+
'Programming Language :: Python :: 2',
186187
'Programming Language :: Python :: 2.6',
187188
'Programming Language :: Python :: 2.7',
189+
'Programming Language :: Python :: 3',
188190
'Programming Language :: Python :: 3.2',
189191
'Programming Language :: Python :: 3.3',
190192
'Programming Language :: Python :: 3.4',

0 commit comments

Comments
 (0)