Skip to content

Commit

Permalink
Explicitly require compatible ldap3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Nov 3, 2016
1 parent a347c43 commit 3c91ed8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,11 @@
0.2.5
-----

- Explicitly requires ldap3 < version 2.0 because in version 2 of ldap3
some default values have been changed and constants renamed or changed.
This version is intended to support the older ldap3 versions.


0.2.4
-----

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@
README = open(path.join(here, 'README.rst')).read()
CHANGES = open(path.join(here, 'CHANGES.txt')).read()

requires = ['pyramid>=1.3', 'ldap3']
requires = ['pyramid>=1.3', 'ldap3<2.0']

sampleapp_extras = ['waitress', 'pyramid_debugtoolbar']
testing_extras = ['nose', 'coverage']
Expand Down

0 comments on commit 3c91ed8

Please sign in to comment.