From 34f0f432346f9ab1d37bc9637c407d18be991079 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Wed, 3 Oct 2012 13:08:22 -0700 Subject: [PATCH] Move version to Shadow.py --- Cython/Shadow.py | 1 + Cython/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cython/Shadow.py b/Cython/Shadow.py index 6891a93..3d4cecb 100644 --- a/Cython/Shadow.py +++ b/Cython/Shadow.py @@ -1,4 +1,5 @@ # cython.* namespace for pure mode. +__version__ = "0.18-pre" compiled = False diff --git a/Cython/__init__.py b/Cython/__init__.py index a2e05fb..dc6b08c 100644 --- a/Cython/__init__.py +++ b/Cython/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.18-pre" +# __version__ defined in Shadow.py # Void cython.* directives (for case insensitive operating systems). from Cython.Shadow import * -- 2.7.4