From 0bf96c76e248066cb33714c71738cc3a3cfb5cef Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Tue, 22 Jan 2013 00:54:15 -0500
Subject: [PATCH] Play around with version declaration in setup.py.

---
 setup.py           | 12 +++++++++++-
 test/test_loopy.py |  2 ++
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 352f533e4..9efe1e77c 100644
--- a/setup.py
+++ b/setup.py
@@ -41,8 +41,18 @@ setup(name="loopy",
         'Topic :: Utilities',
         ],
 
+      dependency_links=[
+          "git+git://github.com/inducer/pyopencl#egg=pyopencl-2013.1",
+          "git+git://github.com/inducer/pymbolic#egg=pymbolic-2013.1",
+          "cgen",
+          "islpy>=2013.1"
+          ],
+
       install_requires=[
-          "pyopencl>=2011.1", "pymbolic", "cgen", "islpy"
+          "pyopencl>=2013.1",
+          "pymbolic>=2013.1",
+          "cgen",
+          "islpy>=2013.1"
           ],
 
       author="Andreas Kloeckner",
diff --git a/test/test_loopy.py b/test/test_loopy.py
index 566ee1e6d..15328ece6 100644
--- a/test/test_loopy.py
+++ b/test/test_loopy.py
@@ -592,6 +592,7 @@ def test_multi_nested_dependent_reduction(ctx_factory):
 
     cknl = lp.CompiledKernel(ctx, knl)
     print cknl.code
+    # FIXME: Actually test functionality.
 
 
 
@@ -623,6 +624,7 @@ def test_recursive_nested_dependent_reduction(ctx_factory):
 
     cknl = lp.CompiledKernel(ctx, knl)
     print cknl.code
+    # FIXME: Actually test functionality.
 
 
 
-- 
GitLab