Skip to content

Commit

Permalink
release v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Aug 15, 2021
1 parent f0295bd commit ea850ed
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changelog
============

v0.13.0 (in work)
v0.13.0
------
* Maintainership passed to Max Bachmann
* use faster bitparallel implementations for distance and ratio
Expand Down
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ computation of:
* approximate median strings, and generally string averaging
* string sequence and set similarity

This is a fork of `ztane/python-Levenshtein <https://github.com/ztane/python-Levenshtein>`_, since the original
project is no longer actively maintained.

Requirements
------------
* Python 2.7 or later

Installation
------------
.. code-block:: bash
pip install python-Levenshtein
pip install levenshtein
Documentation
-------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ long_description_content_type = text/markdown
license = GPL
license_file = COPYING
classifiers =
Programming Language :: Python :: 2,
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class BuildExt(build_ext):
"""A custom build extension for adding compiler-specific options."""
c_opts = {
'msvc': ['/EHsc', '/O2', '/W4'],
'unix': ['-O3', '-Wextra', '-Wall', '-Wconversion', '-g0',],
'unix': ['-O3', '-Wextra', '-Wall', '-Wconversion', '-g0'],
}
l_opts = {
'msvc': [],
Expand Down

0 comments on commit ea850ed

Please sign in to comment.