[Python-modules-commits] [fuzzywuzzy] 01/03: Import fuzzywuzzy_0.11.1.orig.tar.gz
Edward Betts
edward at moszumanska.debian.org
Wed Aug 31 10:51:39 UTC 2016
This is an automated email from the git hooks/post-receive script.
edward pushed a commit to branch master
in repository fuzzywuzzy.
commit 3a783008fa125db97a3f32200fc614460c3f5616
Author: Edward Betts <edward at 4angle.com>
Date: Wed Aug 31 11:43:13 2016 +0100
Import fuzzywuzzy_0.11.1.orig.tar.gz
---
CHANGES.rst | 9 +++++++++
PKG-INFO | 6 +++---
README | 4 ++--
README.rst | 4 ++--
fuzzywuzzy.egg-info/PKG-INFO | 6 +++---
fuzzywuzzy/__init__.py | 2 +-
test_fuzzywuzzy.py | 4 ++--
7 files changed, 22 insertions(+), 13 deletions(-)
diff --git a/CHANGES.rst b/CHANGES.rst
index a0cada3..fd4fa9a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,15 @@
Changelog
=========
+0.11.1 (2016-07-27)
+-------------------
+
+- Add editorconfig. [Jose Diaz-Gonzalez]
+
+- Added tox.ini cofig file for easy local multi-environment testing
+ changed travis config to use py.test like tox updated use of pep8
+ module to pycodestyle. [Pedro Rodrigues]
+
0.11.0 (2016-06-30)
-------------------
diff --git a/PKG-INFO b/PKG-INFO
index 2596b7c..e9775dd 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: fuzzywuzzy
-Version: 0.11.0
+Version: 0.11.1
Summary: Fuzzy string matching in python
Home-page: https://github.com/seatgeek/fuzzywuzzy
Author: Adam Cohen
@@ -55,13 +55,13 @@ Description: .. image:: https://travis-ci.org/seatgeek/fuzzywuzzy.svg?branch=mas
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.0#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.1#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.11.0#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.11.1#egg=fuzzywuzzy
Manually via GIT
diff --git a/README b/README
index 3e35178..b4b2c65 100644
--- a/README
+++ b/README
@@ -27,13 +27,13 @@ Using PIP via Github
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.0#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.1#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.11.0#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.11.1#egg=fuzzywuzzy
Manually via GIT
diff --git a/README.rst b/README.rst
index 3e35178..b4b2c65 100644
--- a/README.rst
+++ b/README.rst
@@ -27,13 +27,13 @@ Using PIP via Github
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.0#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.1#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.11.0#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.11.1#egg=fuzzywuzzy
Manually via GIT
diff --git a/fuzzywuzzy.egg-info/PKG-INFO b/fuzzywuzzy.egg-info/PKG-INFO
index 2596b7c..e9775dd 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.11.0
+Version: 0.11.1
Summary: Fuzzy string matching in python
Home-page: https://github.com/seatgeek/fuzzywuzzy
Author: Adam Cohen
@@ -55,13 +55,13 @@ Description: .. image:: https://travis-ci.org/seatgeek/fuzzywuzzy.svg?branch=mas
.. code:: bash
- pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.0#egg=fuzzywuzzy
+ pip install git+git://github.com/seatgeek/fuzzywuzzy.git@0.11.1#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.11.0#egg=fuzzywuzzy
+ git+ssh://git@github.com/seatgeek/fuzzywuzzy.git@0.11.1#egg=fuzzywuzzy
Manually via GIT
diff --git a/fuzzywuzzy/__init__.py b/fuzzywuzzy/__init__.py
index a52f1c2..c690c91 100644
--- a/fuzzywuzzy/__init__.py
+++ b/fuzzywuzzy/__init__.py
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
-__version__ = '0.11.0'
+__version__ = '0.11.1'
diff --git a/test_fuzzywuzzy.py b/test_fuzzywuzzy.py
index 0db3924..d41238a 100644
--- a/test_fuzzywuzzy.py
+++ b/test_fuzzywuzzy.py
@@ -3,7 +3,7 @@ from __future__ import unicode_literals
import unittest
import re
import sys
-import pep8
+import pycodestyle
from fuzzywuzzy import fuzz
from fuzzywuzzy import process
@@ -501,7 +501,7 @@ class ProcessTest(unittest.TestCase):
class TestCodeFormat(unittest.TestCase):
def test_pep8_conformance(self):
- pep8style = pep8.StyleGuide(quiet=True)
+ pep8style = pycodestyle.StyleGuide(quiet=True)
pep8style.options.ignore = pep8style.options.ignore + tuple(['E501'])
pep8style.input_dir('fuzzywuzzy')
result = pep8style.check_files()
--
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