From 28aac298e0ac696778292f8239bb27929cdb0fa0 Mon Sep 17 00:00:00 2001
From: Paul Philip Voelker
Date: Mon, 2 Sep 2019 18:51:51 -0400
Subject: [PATCH 1/2] remove temporary openpyxl fix
---
setup.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/setup.py b/setup.py
index 6fe9bcf..ac4f962 100644
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,6 @@ class PublishCommand(Command):
requires = ['SQLAlchemy;python_version>="3.0"',
'SQLAlchemy<1.1;python_version<"3.0"',
- 'openpyxl<2.5.0', # temporary fix to issue #142
'tablib>=0.11.4',
'docopt']
version = '0.5.3'
From 8346dadb618d58d518714ffeae57d46994e18e55 Mon Sep 17 00:00:00 2001
From: Paul Philip Voelker
Date: Mon, 30 Mar 2020 21:59:55 +0200
Subject: [PATCH 2/2] Add openpyxl>2.6.0 requirement
---
setup.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/setup.py b/setup.py
index ac4f962..c8de2ca 100644
--- a/setup.py
+++ b/setup.py
@@ -48,6 +48,7 @@ class PublishCommand(Command):
requires = ['SQLAlchemy;python_version>="3.0"',
'SQLAlchemy<1.1;python_version<"3.0"',
'tablib>=0.11.4',
+ 'openpyxl>2.6.0', # https://github.com/kennethreitz-archive/records/pull/184#issuecomment-606207851
'docopt']
version = '0.5.3'