From 2015c54b7dd122bf2d82e4048ce4aa006a24a54c Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco Date: Mon, 22 Nov 2021 15:45:58 -0600 Subject: [PATCH] Allow for arrow >= 1.0.2 on Python 3.6+ Closes https://github.com/Backblaze/b2-sdk-python/issues/201 --- CHANGELOG.md | 3 +++ requirements.txt | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1569aee0b..60aeae275 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +* Relax constraint on arrow to allow for versions >= 1.0.2 + ## [1.13.0] - 2021-10-24 ### Added diff --git a/requirements.txt b/requirements.txt index 452ab9f4c..9ed7858d1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -arrow>=0.8.0,<1.0.0 +arrow>=0.8.0,<1.0.0; python_version <= '3.5' +arrow>=1.0.2,<2.0.0; python_version >= '3.6' importlib-metadata>=2.1.1,<3.0.0; python_version <= '3.5' importlib-metadata>=3.3.0; python_version > '3.5' and python_version < '3.8' logfury>=1.0.1,<2.0.0