Skip to content

Commit

Permalink
Merge branch 'release-0.10.0rc1'
Browse files Browse the repository at this point in the history
  • Loading branch information
piskvorky committed May 18, 2014
2 parents 3520fa3 + 782f622 commit d60b96f
Show file tree
Hide file tree
Showing 43 changed files with 1,214 additions and 837 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Thumbs.db
docs/src/_build/
docs/_static
dedan_gensim.tmproj
gensim.egg-info
gensim*.egg-info
*,cover
.idea
*.dict
Expand All @@ -61,3 +61,4 @@ data
*.bin
*.old
*.model
*~
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
- "3.3"
- "3.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-numpy python-scipy libatlas-dev liblapack-dev gfortran
- sudo apt-get install -qq libatlas-dev liblapack-dev gfortran
- travis_wait pip install --quiet numpy
- travis_wait pip install --quiet scipy
install:
- python setup.py install
script: python setup.py test
11 changes: 11 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changes
=======

0.10.0rc1

* full Python 3 support (targeting 3.3+, #196)
* all internal methods now expect & store unicode, instead of utf8
* new optimized word2vec functionality: negative sampling, cbow (sebastien-j, #162)
* allow by-frequency sort in Dictionary.save_as_text (Renaud Richardet, #192)
* add topic printing to HDP model (Tiepes, #190)
* new gensim_addons package = optional install-time Cython compilations (Björn Esser, #197)
* added py3.3 and 3.4 to Travis CI tests
* fix a cbow word2vec bug (Liang-Chi Hsieh)

0.9.1, 12/04/2014

* MmCorpus fix for Windows
Expand Down
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ you'll need to run::
For alternative modes of installation (without root privileges, development
installation, optional install features), see the `documentation <http://radimrehurek.com/gensim/install.html>`_.

This version has been tested under Python 2.6 and 2.7.
Python 3 support is work in progress.
This version has been tested under Python 2.6, 2.7 and 3.3.

Documentation
-------------
Expand Down
4 changes: 2 additions & 2 deletions docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = '0.9.1'
version = '0.10.0rc1'
# The full version, including alpha/beta/rc tags.
release = '0.9.1'
release = '0.10.0rc1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/gensim_theme/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ <h1 class="h1gensim">
<h3><a href="http://radimrehurek.com/">Get Expert Help</a></h3>
<p>• machine learning, NLP, data mining</p>
<p>• custom system design, development, optimizations</p>
<p>• tech trainings &amp; business consulting</p>
<p>• tech trainings &amp; IT consulting</p>
</div>
</div>
</div>
Expand Down
2 changes: 0 additions & 2 deletions gensim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
similarities within a corpus of documents.
"""

# for IPython tab-completion
from gensim import utils, matutils, interfaces, corpora, models, similarities
import logging


try:
__version__ = __import__('pkg_resources').get_distribution('gensim').version
except:
Expand Down
Loading

0 comments on commit d60b96f

Please sign in to comment.