From dd301e4baaf44640e5246dea0c2952c1cfa358a5 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Wed, 27 Jul 2016 11:29:22 -0700 Subject: [PATCH] add version string (#304) --- lib/python/ray/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/python/ray/__init__.py b/lib/python/ray/__init__.py index 9255762f3..762b69570 100644 --- a/lib/python/ray/__init__.py +++ b/lib/python/ray/__init__.py @@ -7,6 +7,9 @@ SHELL_MODE = 2 PYTHON_MODE = 3 SILENT_MODE = 4 # This is only used during testing. +# Ray version string +__version__ = "0.1" + import ctypes # Windows only if hasattr(ctypes, "windll"):