From 6f65c43a57dbf3fc2dc84c60fe32d14abaabedb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 03:17:16 +0000 Subject: [PATCH] Update arrow requirement from <1.3,>=0.12.1 to >=0.12.1,<1.4 Updates the requirements on [arrow](https://github.com/arrow-py/arrow) to permit the latest version. - [Release notes](https://github.com/arrow-py/arrow/releases) - [Changelog](https://github.com/arrow-py/arrow/blob/master/CHANGELOG.rst) - [Commits](https://github.com/arrow-py/arrow/compare/0.12.1...1.3.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c4aa206..a201cf0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ README = open(os.path.join(here, 'README.rst')).read() requires = [ - 'arrow>=0.12.1,<1.3', + 'arrow>=0.12.1,<1.4', 'attrs>=17.4.0', 'charset-normalizer<3', 'docopt>=0.6.2',