diff --git a/pyopencl/__init__.py b/pyopencl/__init__.py index efb1da56568c471e292e771cd70e32789d2ea7ab..5dd83c220424ec56e433b21e727a6872b68f5a0e 100644 --- a/pyopencl/__init__.py +++ b/pyopencl/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 90) +VERSION = (0, 90, 1) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS diff --git a/setup.py b/setup.py index 00c7ec8ad25b1b65d5ab4f816d80fc56e6934b23..265ee8a95cf2dca2e2549005c7de277d850d5ff9 100644 --- a/setup.py +++ b/setup.py @@ -58,9 +58,12 @@ def main(): ext_kwargs = dict() + ver_dic = {} + execfile("pycuda/__init__.py", ver_dic) + setup(name="pyopencl", # metadata - version="0.90", + version=ver_dic["VERSION_TEXT"], description="Python wrapper for OpenCL", long_description=""" PyOpenCL lets you access GPUs and other massively parallel compute