Skip to content

Commit c4a93a9

Browse files
committed
Fixes too strict future requirement
1 parent c6e352c commit c4a93a9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
History
33
=======
44

5+
master (XXXX-XX-XX)
6+
-------------------
7+
* Fix: future dependency requirement was too strict
8+
59
1.6.1 (2019-10-01)
610
-------------------
711
* Fix: python-dateutil dependency requirement was too strict

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
changelog = changelog_file.read()
1313

1414
requirements = [
15-
"future==0.17.1",
15+
"future>=0.17.1,<0.19",
1616
"python-dateutil>=2.7.5,<2.9",
1717
"requests>=2.20,<2.23"
1818
]

0 commit comments

Comments
 (0)