Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Oct 3, 2019
1 parent 0bd05e9 commit 1a0c74e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,20 +172,20 @@ With extra libraries for maximum speed:

.. code:: bash
pip install textdistance[extras]
pip install "textdistance[extras]"
With all libraries (required for `benchmarking <#benchmarks>`__ and
`testing <#test>`__):

.. code:: bash
pip install textdistance[benchmark]
pip install "textdistance[benchmark]"
With algorithm specific extras:

.. code:: bash
pip install textdistance[Hamming]
pip install "textdistance[Hamming]"
Algorithms with available extras: ``DamerauLevenshtein``, ``Hamming``,
``Jaro``, ``JaroWinkler``, ``Levenshtein``.
Expand All @@ -204,7 +204,7 @@ Or clone repo and install with some extras:
.. code:: bash
git clone https://github.com/orsinium/textdistance.git
pip install -e .[benchmark]
pip install -e ".[benchmark]"
Usage
-----
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

setup(
name='textdistance',
version='4.1.4',
version='4.1.5',

author='orsinium',
author_email='master_fess@mail.ru',
Expand Down
2 changes: 1 addition & 1 deletion textdistance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# main package info
__title__ = 'TextDistance'
__version__ = '4.1.4'
__version__ = '4.1.5'
__author__ = 'Gram (@orsinium)'
__license__ = 'MIT'

Expand Down

0 comments on commit 1a0c74e

Please sign in to comment.