Created
August 9, 2015 17:43
-
-
Save felipe-prenholato/36b73094c5cb31de98db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -r 7b7bff42522a requirements.txt | |
| --- a/requirements.txt Tue Jun 16 12:22:38 2015 -0700 | |
| +++ b/requirements.txt Sun Aug 09 14:41:14 2015 -0300 | |
| @@ -1,4 +1,4 @@ | |
| funcparserlib==0.3.6 | |
| mock>=1.0.1 | |
| passlib>=1.6.1 | |
| -python-ldap>=2.4.10 | |
| +pyldap>=2.4.10 | |
| diff -r 7b7bff42522a setup.py | |
| --- a/setup.py Tue Jun 16 12:22:38 2015 -0700 | |
| +++ b/setup.py Sun Aug 09 14:41:14 2015 -0300 | |
| @@ -20,7 +20,7 @@ | |
| setup( | |
| name='mockldap', | |
| version='0.2.5', | |
| - description=u"A simple mock implementation of python-ldap.", | |
| + description=u"A simple mock implementation of python-ldap through pyldap.", | |
| long_description=open('README').read(), | |
| url='http://bitbucket.org/psagers/mockldap/', | |
| author='Peter Sagerson', | |
| @@ -47,7 +47,7 @@ | |
| ], | |
| keywords=['mock', 'ldap'], | |
| install_requires=[ | |
| - 'python-ldap', | |
| + 'pyldap', | |
| 'funcparserlib==0.3.6', | |
| ] + requires_mock, | |
| extras_require={ | |
| diff -r 7b7bff42522a tox.ini | |
| --- a/tox.ini Tue Jun 16 12:22:38 2015 -0700 | |
| +++ b/tox.ini Sun Aug 09 14:41:14 2015 -0300 | |
| @@ -10,21 +10,21 @@ | |
| [testenv:py26] | |
| deps = {[testenv]deps} | |
| mock >= 1.0.1 | |
| - python-ldap >= 2.4.10 | |
| + pyldap >= 2.4.10 | |
| unittest2 | |
| [testenv:py27] | |
| deps = {[testenv]deps} | |
| mock >= 1.0.1 | |
| - python-ldap >= 2.4.10 | |
| + pyldap >= 2.4.10 | |
| [testenv:py33] | |
| deps = {[testenv]deps} | |
| - git+https://github.com/rbarrois/python-ldap.git@py3 | |
| + git+https://github.com/pyldap/pyldap.git | |
| [testenv:py34] | |
| deps = {[testenv]deps} | |
| - git+https://github.com/rbarrois/python-ldap.git@py3 | |
| + git+https://github.com/pyldap/pyldap.git | |
| [flake8] | |
| ignore = E501 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment