diff --git a/distribute_setup.py b/distribute_setup.py index 3ea2e667f1eda6cf54465a0acccfdff587a60663..bbb6f3c25e39f24ea0758dd1ef8ad8662e53ea94 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -46,7 +46,7 @@ except ImportError: args = [quote(arg) for arg in args] return os.spawnl(os.P_WAIT, sys.executable, *args) == 0 -DEFAULT_VERSION = "0.6.14" +DEFAULT_VERSION = "0.6.19" DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/" SETUPTOOLS_FAKED_VERSION = "0.6c11" diff --git a/doc/source/misc.rst b/doc/source/misc.rst index f88f590e01685e5f4d860609313a5cf486171e38..326ecc0bd0371f8fba8481e40358299adbf18412 100644 --- a/doc/source/misc.rst +++ b/doc/source/misc.rst @@ -73,6 +73,11 @@ Version 2011.2 This version is currently under development. You can get snapshots from PyOpenCL's git version control. +Version 2011.1.1 +---------------- + +* Fixes for Python 3 compatibility. (with work by Christoph Gohlke) + Version 2011.1 -------------- diff --git a/pyopencl/version.py b/pyopencl/version.py index 37c40593a90df16d5a7705456c486f13971148c9..686ea1a4053216841be6f3aed0ca25cfbd7115b4 100644 --- a/pyopencl/version.py +++ b/pyopencl/version.py @@ -1,4 +1,4 @@ -VERSION = (2011, 1, 1) +VERSION = (2011, 2) VERSION_STATUS = "" VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS