Skip to content

Commit 1a0c74e

Browse files
committed
release
1 parent 0bd05e9 commit 1a0c74e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,20 +172,20 @@ With extra libraries for maximum speed:
172172

173173
.. code:: bash
174174
175-
pip install textdistance[extras]
175+
pip install "textdistance[extras]"
176176
177177
With all libraries (required for `benchmarking <#benchmarks>`__ and
178178
`testing <#test>`__):
179179

180180
.. code:: bash
181181
182-
pip install textdistance[benchmark]
182+
pip install "textdistance[benchmark]"
183183
184184
With algorithm specific extras:
185185

186186
.. code:: bash
187187
188-
pip install textdistance[Hamming]
188+
pip install "textdistance[Hamming]"
189189
190190
Algorithms with available extras: ``DamerauLevenshtein``, ``Hamming``,
191191
``Jaro``, ``JaroWinkler``, ``Levenshtein``.
@@ -204,7 +204,7 @@ Or clone repo and install with some extras:
204204
.. code:: bash
205205
206206
git clone https://github.com/orsinium/textdistance.git
207-
pip install -e .[benchmark]
207+
pip install -e ".[benchmark]"
208208
209209
Usage
210210
-----

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
setup(
6868
name='textdistance',
69-
version='4.1.4',
69+
version='4.1.5',
7070

7171
author='orsinium',
7272
author_email='master_fess@mail.ru',

textdistance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# main package info
88
__title__ = 'TextDistance'
9-
__version__ = '4.1.4'
9+
__version__ = '4.1.5'
1010
__author__ = 'Gram (@orsinium)'
1111
__license__ = 'MIT'
1212

0 commit comments

Comments
 (0)