[Python-modules-commits] [fuzzywuzzy] 01/03: New upstream version 0.16.0
Edward Betts
edward at moszumanska.debian.org
Tue Jan 16 10:25:41 UTC 2018
This is an automated email from the git hooks/post-receive script.
edward pushed a commit to branch debian/master
in repository fuzzywuzzy.
commit 60ab57e28191bf34fa804b09cdec871a116f281f
Author: Edward Betts <edward at 4angle.com>
Date: Tue Jan 16 07:28:08 2018 +0000
New upstream version 0.16.0
---
CHANGES.rst | 37 +++++++++++++++++++++++++++++++++++++
PKG-INFO | 10 +++++++---
README | 5 +++--
README.rst | 5 +++--
fuzzywuzzy.egg-info/PKG-INFO | 10 +++++++---
fuzzywuzzy.egg-info/SOURCES.txt | 1 -
fuzzywuzzy.egg-info/pbr.json | 1 -
fuzzywuzzy/__init__.py | 2 +-
fuzzywuzzy/process.py | 8 ++++----
setup.py | 5 ++++-
10 files changed, 66 insertions(+), 18 deletions(-)
diff --git a/CHANGES.rst b/CHANGES.rst
index b0db2ef..4bbed02 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,43 @@
Changelog
=========
+0.16.0 (2017-12-18)
+-------------------
+
+- Add punctuation characters back in so process does something.
+ [davidcellis]
+
+- Simpler alphabet and even fewer examples. [davidcellis]
+
+- Fewer examples and larger deadlines for Hypothesis. [davidcellis]
+
+- Slightly more examples. [davidcellis]
+
+- Attempt to fix the failing 2.7 and 3.6 python tests. [davidcellis]
+
+- Readme: add link to C++ port. [Lizard]
+
+- Fix tests on Python 3.3. [Jon Banafato]
+
+ Modify tox.ini and .travis.yml to install enum34 when running with
+ Python 3.3 to allow hypothesis tests to pass.
+
+
+- Normalize Python versions. [Jon Banafato]
+
+ - Enable Travis-CI tests for Python 3.6
+ - Enable tests for all supported Python versions in tox.ini
+ - Add Trove classifiers for Python 3.4 - 3.6 to setup.py
+
+ ---
+
+ Note: Python 2.6 and 3.3 are no longer supported by the Python core
+ team. Support for these can likely be dropped, but that's out of scope
+ for this change set.
+
+
+- Fix typos. [Sven-Hendrik Haase]
+
0.15.1 (2017-07-19)
-------------------
diff --git a/PKG-INFO b/PKG-INFO
index d4d0cee..99d401b 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: fuzzywuzzy
-Version: 0.15.1
+Version: 0.16.0
Summary: Fuzzy string matching in python
Home-page: https://github.com/seatgeek/fuzzywuzzy
Author: Adam Cohen
@@ -42,13 +42,13 @@ Description: .. image:: https://travis-ci.org/seatgeek/fuzzywuzzy.svg?branch=mas
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
.. code:: bash
- git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Manually via GIT
@@ -135,6 +135,7 @@ Description: .. image:: https://travis-ci.org/seatgeek/fuzzywuzzy.svg?branch=mas
- Java: `fuzzywuzzy (java port) <https://github.com/xdrop/fuzzywuzzy>`_
- Rust: `fuzzyrusty (Rust port) <https://github.com/logannc/fuzzyrusty>`_
- JavaScript: `fuzzball.js (JavaScript port) <https://github.com/nol13/fuzzball.js>`_
+ - C++: `Tmplt/fuzzywuzzy <https://github.com/Tmplt/fuzzywuzzy>`_
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
@@ -143,3 +144,6 @@ Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
diff --git a/README b/README
index db16756..601fa0c 100644
--- a/README
+++ b/README
@@ -34,13 +34,13 @@ Using PIP via Github
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
.. code:: bash
- git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Manually via GIT
@@ -127,3 +127,4 @@ FuzzyWuzzy is being ported to other languages too! Here are a few ports we know
- Java: `fuzzywuzzy (java port) <https://github.com/xdrop/fuzzywuzzy>`_
- Rust: `fuzzyrusty (Rust port) <https://github.com/logannc/fuzzyrusty>`_
- JavaScript: `fuzzball.js (JavaScript port) <https://github.com/nol13/fuzzball.js>`_
+- C++: `Tmplt/fuzzywuzzy <https://github.com/Tmplt/fuzzywuzzy>`_
diff --git a/README.rst b/README.rst
index db16756..601fa0c 100644
--- a/README.rst
+++ b/README.rst
@@ -34,13 +34,13 @@ Using PIP via Github
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
.. code:: bash
- git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Manually via GIT
@@ -127,3 +127,4 @@ FuzzyWuzzy is being ported to other languages too! Here are a few ports we know
- Java: `fuzzywuzzy (java port) <https://github.com/xdrop/fuzzywuzzy>`_
- Rust: `fuzzyrusty (Rust port) <https://github.com/logannc/fuzzyrusty>`_
- JavaScript: `fuzzball.js (JavaScript port) <https://github.com/nol13/fuzzball.js>`_
+- C++: `Tmplt/fuzzywuzzy <https://github.com/Tmplt/fuzzywuzzy>`_
diff --git a/fuzzywuzzy.egg-info/PKG-INFO b/fuzzywuzzy.egg-info/PKG-INFO
index d4d0cee..99d401b 100644
--- a/fuzzywuzzy.egg-info/PKG-INFO
+++ b/fuzzywuzzy.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: fuzzywuzzy
-Version: 0.15.1
+Version: 0.16.0
Summary: Fuzzy string matching in python
Home-page: https://github.com/seatgeek/fuzzywuzzy
Author: Adam Cohen
@@ -42,13 +42,13 @@ Description: .. image:: https://travis-ci.org/seatgeek/fuzzywuzzy.svg?branch=mas
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
.. code:: bash
- git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.15.1#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.16.0#egg=fuzzywuzzy
Manually via GIT
@@ -135,6 +135,7 @@ Description: .. image:: https://travis-ci.org/seatgeek/fuzzywuzzy.svg?branch=mas
- Java: `fuzzywuzzy (java port) <https://github.com/xdrop/fuzzywuzzy>`_
- Rust: `fuzzyrusty (Rust port) <https://github.com/logannc/fuzzyrusty>`_
- JavaScript: `fuzzball.js (JavaScript port) <https://github.com/nol13/fuzzball.js>`_
+ - C++: `Tmplt/fuzzywuzzy <https://github.com/Tmplt/fuzzywuzzy>`_
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
@@ -143,3 +144,6 @@ Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
+Classifier: Programming Language :: Python :: 3.6
diff --git a/fuzzywuzzy.egg-info/SOURCES.txt b/fuzzywuzzy.egg-info/SOURCES.txt
index c7a13e0..ee7c274 100644
--- a/fuzzywuzzy.egg-info/SOURCES.txt
+++ b/fuzzywuzzy.egg-info/SOURCES.txt
@@ -16,7 +16,6 @@ fuzzywuzzy/utils.py
fuzzywuzzy.egg-info/PKG-INFO
fuzzywuzzy.egg-info/SOURCES.txt
fuzzywuzzy.egg-info/dependency_links.txt
-fuzzywuzzy.egg-info/pbr.json
fuzzywuzzy.egg-info/requires.txt
fuzzywuzzy.egg-info/top_level.txt
fuzzywuzzy.egg-info/zip-safe
\ No newline at end of file
diff --git a/fuzzywuzzy.egg-info/pbr.json b/fuzzywuzzy.egg-info/pbr.json
deleted file mode 100644
index fea72b7..0000000
--- a/fuzzywuzzy.egg-info/pbr.json
+++ /dev/null
@@ -1 +0,0 @@
-{"is_release": true, "git_version": "23f4709"}
\ No newline at end of file
diff --git a/fuzzywuzzy/__init__.py b/fuzzywuzzy/__init__.py
index 5b18ec2..8e23ba9 100644
--- a/fuzzywuzzy/__init__.py
+++ b/fuzzywuzzy/__init__.py
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
-__version__ = '0.15.1'
+__version__ = '0.16.0'
diff --git a/fuzzywuzzy/process.py b/fuzzywuzzy/process.py
index a7b86a3..61b38f1 100644
--- a/fuzzywuzzy/process.py
+++ b/fuzzywuzzy/process.py
@@ -42,7 +42,7 @@ def extractWithoutOrder(query, choices, processor=default_processor, scorer=defa
"""Select the best match in a list or dictionary of choices.
Find best matches in a list or dictionary of choices, return a
- generator of tuples containing the match and it's score. If a dictionary
+ generator of tuples containing the match and its score. If a dictionary
is used, also returns the key for each match.
Arguments:
@@ -74,7 +74,7 @@ def extractWithoutOrder(query, choices, processor=default_processor, scorer=defa
If a list is used for choices, then the result will be 2-tuples.
If a dictionary is used, then the result will be 3-tuples containing
- he key for each match.
+ the key for each match.
For example, searching for 'bird' in the dictionary
@@ -148,7 +148,7 @@ def extract(query, choices, processor=default_processor, scorer=default_scorer,
"""Select the best match in a list or dictionary of choices.
Find best matches in a list or dictionary of choices, return a
- list of tuples containing the match and it's score. If a dictionary
+ list of tuples containing the match and its score. If a dictionary
is used, also returns the key for each match.
Arguments:
@@ -179,7 +179,7 @@ def extract(query, choices, processor=default_processor, scorer=default_scorer,
If a list is used for choices, then the result will be 2-tuples.
If a dictionary is used, then the result will be 3-tuples containing
- he key for each match.
+ the key for each match.
For example, searching for 'bird' in the dictionary
diff --git a/setup.py b/setup.py
index 9a7f6bc..cbacd12 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,10 @@ setup(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3'
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
],
description='Fuzzy string matching in python',
long_description=open_file('README.rst').read(),
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/fuzzywuzzy.git
More information about the Python-modules-commits
mailing list