summaryrefslogtreecommitdiff
path: root/gps
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-09-21 12:00:30 -0700
committerGary E. Miller <gem@rellim.com>2018-09-21 12:00:30 -0700
commit1210da5397121cc10325747568140943b216c157 (patch)
treec382ac2e181e238a6240c3c6d39f939a7cd82d3f /gps
parenta8b717f4a1ab13b5f3d03d853c69270e3f039282 (diff)
downloadgpsd-1210da5397121cc10325747568140943b216c157.tar.gz
gps.py: add __version__
So client can check for matching python module version
Diffstat (limited to 'gps')
-rw-r--r--gps/gps.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gps/gps.py b/gps/gps.py
index 037796df..220880d4 100644
--- a/gps/gps.py
+++ b/gps/gps.py
@@ -22,6 +22,9 @@ from __future__ import absolute_import, print_function, division
from .client import *
from .watch_options import *
+# module version, would be nice to automate the version
+__version__ = "3.18-dev"
+
NaN = float('nan')