aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-05-05 20:54:35 +0200
committerWolfgang Müller2021-05-05 20:54:35 +0200
commit02abc1e2b93c777264f92fe8f919969cc16681a4 (patch)
treeae0291b950e04cdd2618b04620ef8156def808f3
parent78dd8cdfecae633d187172a6d4b949065e6060f2 (diff)
downloadquarg-02abc1e2b93c777264f92fe8f919969cc16681a4.tar.gz
setup.py: Lock to dateutil versions at or above 2.8.1
This is the version we developed with, and we can't give guarantees for any earlier ones.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8db6627..3d3800f 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ setuptools.setup(
},
install_requires=[
- 'python-dateutil',
+ 'python-dateutil>=2.8.1',
'sqlalchemy>=1.4',
]
)