diff --git a/dev_requirements.txt b/dev_requirements.txt index 719efad84e0b52237a82bd28098bce888518c42f..a60f241536d22a6b244b3e2a1d4e952102e7ccae 100644 --- a/dev_requirements.txt +++ b/dev_requirements.txt @@ -1,3 +1,4 @@ --r requirements.txt pyldap>=2.4.28 # here instead of requirements.txt so rtfd can build Sphinx>=1.5.5 + +-r requirements.txt diff --git a/docs/conf.py b/docs/conf.py index eb209e74187fa8c728068f5e37366e2b68f06e71..77802270aa5136d4fb72109da3e15fcfc8c09292 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,16 +57,16 @@ master_doc = 'index' # General information about the project. project = u'Flask-SimpleLDAP' -copyright = u'2017, Alexandre Ferland' +copyright = u'2019, Alexandre Ferland' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '1.3.0' +version = '1.3.1' # The full version, including alpha/beta/rc tags. -release = '1.3.0' +release = '1.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2f5d8dc0b2714bcf08299ded37b74085e08ae821..9ca9a4f5a5e2a57b814e353e04c5f9f8fea6a02d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup setup( name='Flask-SimpleLDAP', - version='1.3.0', + version='1.3.1', url='https://github.com/admiralobvious/flask-simpleldap', license='MIT', author='Alexandre Ferland', @@ -22,7 +22,7 @@ setup( platforms='any', install_requires=[ 'Flask>=0.12.4', - 'python-ldap' + 'pyldap' ], classifiers=[ 'Environment :: Web Environment', @@ -30,7 +30,6 @@ setup( 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',