From 9c860a0e20cf2a9e641ea7aef5b0d36bcef2eb63 Mon Sep 17 00:00:00 2001
From: admiralobvious <aferlandqc@gmail.com>
Date: Sun, 14 Jul 2019 23:14:01 -0400
Subject: [PATCH] fix dep in setup.py

---
 dev_requirements.txt | 3 ++-
 docs/conf.py         | 6 +++---
 setup.py             | 5 ++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev_requirements.txt b/dev_requirements.txt
index 719efad..a60f241 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 eb209e7..7780227 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 2f5d8dc..9ca9a4f 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',
-- 
GitLab