diff options
| author | James Taylor <user234683@users.noreply.github.com> | 2019-02-16 23:41:52 -0800 |
|---|---|---|
| committer | James Taylor <user234683@users.noreply.github.com> | 2019-02-16 23:41:52 -0800 |
| commit | 3905e7e64059b45479894ba1fdfb0ef9cef64475 (patch) | |
| tree | 4c5dbbfd204d0351cac8412cc87a65fea49c1a52 /python/dateutil/_version.py | |
| parent | 24642455d0dc5841ddec99f456598c4f763c1e8a (diff) | |
| download | yt-local-3905e7e64059b45479894ba1fdfb0ef9cef64475.tar.lz yt-local-3905e7e64059b45479894ba1fdfb0ef9cef64475.tar.xz yt-local-3905e7e64059b45479894ba1fdfb0ef9cef64475.zip | |
basic subscriptions system
Diffstat (limited to 'python/dateutil/_version.py')
| -rw-r--r-- | python/dateutil/_version.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/dateutil/_version.py b/python/dateutil/_version.py new file mode 100644 index 0000000..c1a0357 --- /dev/null +++ b/python/dateutil/_version.py @@ -0,0 +1,10 @@ +""" +Contains information about the dateutil version. +""" + +VERSION_MAJOR = 2 +VERSION_MINOR = 6 +VERSION_PATCH = 1 + +VERSION_TUPLE = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) +VERSION = '.'.join(map(str, VERSION_TUPLE)) |
