From 8fcca1f8508323ed840d1267af4da6fd62e0057b Mon Sep 17 00:00:00 2001
From: rluzuriaga <rodrigoluzuriaga@icloud.com>
Date: Mon, 30 Mar 2020 11:56:06 -0700
Subject: [PATCH] Changed install requirement for SQLAlchemy. This would fix
 issue #296.

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 71fe291..d53031f 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ setup(
         'pokedex': ['data/csv/*.csv']
     },
     install_requires=[
-        'SQLAlchemy>=1.0,<2.0',
+        'SQLAlchemy==1.2.5',
         'whoosh>=2.5,<2.7',
         'markdown==2.4.1',
         'construct==2.5.3',