Skip to content

Commit

Permalink
Add italian pocketsphinx model, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Uberi committed Jun 26, 2017
1 parent 97db55c commit 3ef9bdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ To hack on this library, first make sure you have all the requirements listed in

To install/reinstall the library locally, run ``python setup.py install`` in the project `root directory <https://github.com/Uberi/speech_recognition>`__.

Before a release, version tags are created using ``git config gpg.program gpg2 && git config user.signingkey DB45F6C431DE7C2DCD99FF7904882258A4063489 && git tag -s VERSION_GOES_HERE -m "Version VERSION_GOES_HERE"``.
Before a release, the version number is bumped in ``README.rst`` and ``speech_recognition/__init__.py``. Version tags are then created using ``git config gpg.program gpg2 && git config user.signingkey DB45F6C431DE7C2DCD99FF7904882258A4063489 && git tag -s VERSION_GOES_HERE -m "Version VERSION_GOES_HERE"``.

Releases are done by running ``make-release.sh`` to build the Python source packages, sign them, and upload them to PyPI.

Expand Down Expand Up @@ -349,11 +349,11 @@ Please report bugs and suggestions at the `issue tracker <https://github.com/Ube

How to cite this library (APA style):

Zhang, A. (2017). Speech Recognition (Version 3.6) [Software]. Available from https://github.com/Uberi/speech_recognition#readme.
Zhang, A. (2017). Speech Recognition (Version 3.7) [Software]. Available from https://github.com/Uberi/speech_recognition#readme.

How to cite this library (Chicago style):

Zhang, Anthony. 2017. *Speech Recognition* (version 3.6).
Zhang, Anthony. 2017. *Speech Recognition* (version 3.7).

Also check out the `Python Baidu Yuyin API <https://github.com/DelightRun/PyBaiduYuyin>`__, which is based on an older version of this project, and adds support for `Baidu Yuyin <http://yuyin.baidu.com/>`__. Note that Baidu Yuyin is only available inside China.

Expand Down
1 change: 1 addition & 0 deletions reference/pocketsphinx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ By default, SpeechRecognition's Sphinx functionality supports only US English. A

* `International French <https://drive.google.com/open?id=0Bw_EqP-hnaFNN2FlQ21RdnVZSVE>`__
* `Mandarin Chinese <https://drive.google.com/open?id=0Bw_EqP-hnaFNSWdqdm5maWZtTGc>`__
* `Italian <https://drive.google.com/open?id=0Bw_EqP-hnaFNSXUtMm8tRkdUejg>`__

To install a language pack, download the ZIP archives and extract them directly into the module install directory (you can find the module install directory by running ``python -c "import speech_recognition as sr, os.path as p; print(p.dirname(sr.__file__))"``).

Expand Down
2 changes: 1 addition & 1 deletion speech_recognition/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import uuid

__author__ = "Anthony Zhang (Uberi)"
__version__ = "3.6.5"
__version__ = "3.7.0"
__license__ = "BSD"

try: # attempt to use the Python 2 modules
Expand Down

0 comments on commit 3ef9bdd

Please sign in to comment.