File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff 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-----
Original file line number Diff line number Diff line change 6666
6767setup (
6868 name = 'textdistance' ,
69- version = '4.1.4 ' ,
69+ version = '4.1.5 ' ,
7070
7171 author = 'orsinium' ,
7272 author_email = 'master_fess@mail.ru' ,
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments