diff options
author | Wolfgang Müller | 2021-05-05 20:54:35 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-05 20:54:35 +0200 |
commit | 02abc1e2b93c777264f92fe8f919969cc16681a4 (patch) | |
tree | ae0291b950e04cdd2618b04620ef8156def808f3 | |
parent | 78dd8cdfecae633d187172a6d4b949065e6060f2 (diff) | |
download | quarg-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ setuptools.setup( }, install_requires=[ - 'python-dateutil', + 'python-dateutil>=2.8.1', 'sqlalchemy>=1.4', ] ) |