From 5e28ec0b60150e7bbd085a13bd828e87862cc40a Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 24 Aug 2018 10:57:22 -0400 Subject: [PATCH 1/3] Linter fixes --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ab16279..a050ecb 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -from codecs import open +from codecs import open # pylint: disable=redefined-builtin def get_config_schema(): @@ -101,6 +101,8 @@ def write_cffi_build_script(headers, **kwargs): def main(): + # pylint: disable=too-many-statements, too-many-branches, too-many-locals + from aksetup_helper import (hack_distutils, get_config, setup, check_git_submodules) @@ -114,7 +116,7 @@ def main(): INCLUDE_DIRS = [] # noqa LIBRARY_DIRS = [] # noqa LIBRARIES = [] # noqa - CXXFLAGS = conf["CXXFLAGS"] + CXXFLAGS = conf["CXXFLAGS"] # noqa: N806 if conf["USE_SHIPPED_ISL"]: from glob import glob @@ -186,7 +188,7 @@ def main(): if "int main(" not in contents and not blacklisted: EXTRA_SOURCES.append(fn) - conf["ISL_INC_DIR"] = ["isl-supplementary", "isl/include", "isl"] + conf["ISL_INC_DIR"] = ["isl-supplementary", "isl/include", "isl"] if conf["USE_SHIPPED_IMATH"]: EXTRA_SOURCES.extend([ -- GitLab From 1264c8170075e752e8b8fb66ecee4a8b609a3ea4 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 24 Aug 2018 11:42:15 -0400 Subject: [PATCH 2/3] Update to isl 0.20 --- isl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl b/isl index fbdfd06..d885198 160000 --- a/isl +++ b/isl @@ -1 +1 @@ -Subproject commit fbdfd06a010f4d19ed863d54f5fa46044c4a59a4 +Subproject commit d885198ad94c337e48c83a0a23b82e0ba76ebe55 -- GitLab From 047ac3e69fc3aabed1c0133542379fae1a5862ea Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 24 Aug 2018 11:46:38 -0400 Subject: [PATCH 3/3] Bump version --- islpy/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/islpy/version.py b/islpy/version.py index aac0098..f5c7ef5 100644 --- a/islpy/version.py +++ b/islpy/version.py @@ -1,2 +1,2 @@ -VERSION = (2018, 1) +VERSION = (2018, 2) VERSION_TEXT = ".".join(str(i) for i in VERSION) -- GitLab