From f30222fb074152320e2a021f1bb4f638f153ca28 Mon Sep 17 00:00:00 2001 From: Dmytro Popovych Date: Wed, 26 Jun 2019 12:55:32 +0300 Subject: [PATCH] Allow newer versions of `six` package (avoid depednecy hell) (#70) Addressing https://github.com/tubular/sparkly/issues/69 --- CHANGELOG.md | 3 +++ requirements.txt | 2 +- sparkly/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 979ad28..b49aa0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2.7.1 +* Allow newer versions of `six` package (avoid depednecy hell) + ## 2.7.0 * Migrate to spark 2.4.0 * Fix testing.DataType to use new convention to get field type diff --git a/requirements.txt b/requirements.txt index 542a3a5..f6b5c9e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,4 +15,4 @@ # pylru==1.0.9 -six==1.10.0 +six>=1.10.0,<2.0 diff --git a/sparkly/__init__.py b/sparkly/__init__.py index 64228b0..c00a495 100644 --- a/sparkly/__init__.py +++ b/sparkly/__init__.py @@ -19,4 +19,4 @@ assert SparklySession -__version__ = '2.7.0' +__version__ = '2.7.1'