From bc92b89d2ffe4c67d88700abedcefc6e595ae8d2 Mon Sep 17 00:00:00 2001 From: Alex Fikl Date: Thu, 22 Feb 2018 00:08:32 -0600 Subject: [PATCH] bump kernel version --- sumpy/p2p.py | 1 - sumpy/qbx.py | 5 ++++- sumpy/version.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/sumpy/p2p.py b/sumpy/p2p.py index e7b47d1e..422a3c92 100644 --- a/sumpy/p2p.py +++ b/sumpy/p2p.py @@ -370,7 +370,6 @@ class P2PMatrixBlockGenerator(SingleSrcTgtListP2PBase): is_obj_array(targets) or isinstance(targets, (tuple, list))), sources_is_obj_array=( is_obj_array(sources) or isinstance(sources, (tuple, list)))) - print(knl) return knl(queue, targets=targets, sources=sources, tgtindices=tgtindices, srcindices=srcindices, diff --git a/sumpy/qbx.py b/sumpy/qbx.py index 52db31f0..50d41464 100644 --- a/sumpy/qbx.py +++ b/sumpy/qbx.py @@ -1,6 +1,9 @@ from __future__ import division, absolute_import -__copyright__ = "Copyright (C) 2012 Andreas Kloeckner" +__copyright__ = """ +Copyright (C) 2012 Andreas Kloeckner +Copyright (C) 2018 Alexandru Fikl +""" __license__ = """ Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/sumpy/version.py b/sumpy/version.py index 98f05a2d..7edeb71f 100644 --- a/sumpy/version.py +++ b/sumpy/version.py @@ -29,4 +29,4 @@ VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS # branch name, so as to avoid conflicts with the master branch. Make sure # to reset this to the next number up with "master" before merging into # master. -KERNEL_VERSION = ("master", 28) +KERNEL_VERSION = ("master", 29) -- GitLab