Skip to content

Commit

Permalink
Fixing #19, adding __version__ attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonKessler committed Oct 23, 2017
1 parent 8e82d0f commit e51c06b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
[![Gitter Chat](https://img.shields.io/badge/GITTER-join%20chat-green.svg)](https://gitter.im/scattertext/Lobby)
[![Twitter Follow](https://img.shields.io/twitter/follow/espadrine.svg?style=social&label=Follow)](https://twitter.com/jasonkessler)

# Scattertext 0.0.2.11.0
Added `produce_fightin_words_explorer` function.
# Scattertext 0.0.2.12.0
Added `produce_fightin_words_explorer` function, and adding the PEP 369-compliant
`__version__` attribute as mentioned in [#19](https://github.com/JasonKessler/scattertext/issues/19).

### Updates

Expand Down
3 changes: 2 additions & 1 deletion scattertext/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import print_function

version = [0, 0, 2, 9, 11]
version = [0, 0, 2, 9, 12]
__version__ = '.'.join([str(e) for e in version])

import warnings

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='scattertext',
version='0.0.2.9.11',
version='0.0.2.9.12',
description='An NLP package to visualize interesting terms in text.',
url='https://github.com/JasonKessler/scattertext',
author='Jason Kessler',
Expand Down

0 comments on commit e51c06b

Please sign in to comment.