From 01696ac638c3423407c7c503da27b5196d201123 Mon Sep 17 00:00:00 2001 From: bbpgithubaudit <86652185+bbpgithubaudit@users.noreply.github.com> Date: Fri, 9 Feb 2024 10:29:10 +0100 Subject: [PATCH 1/2] Updating copyright year: 2024 (#488) --- LICENSE.txt | 2 +- README.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 4db09ce25..ed8afe24b 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2005-2023 Blue Brain Project/EPFL + Copyright (c) 2005-2024 Blue Brain Project/EPFL Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.rst b/README.rst index 622b56964..d542fe777 100644 --- a/README.rst +++ b/README.rst @@ -75,7 +75,7 @@ License MorphIO is licensed under the terms of the Apache License 2.0. See LICENSE.txt for further details. -Copyright (c) 2013-2023 Blue Brain Project/EPFL +Copyright (c) 2013-2024 Blue Brain Project/EPFL .. |license| image:: https://img.shields.io/pypi/l/morphio :target: https://github.com/BlueBrain/morphio/blob/master/COPYING.LESSER From 9f04c67337c0ec16b4448b34159254457407cb9c Mon Sep 17 00:00:00 2001 From: MikeG Date: Wed, 14 Feb 2024 08:51:54 +0100 Subject: [PATCH 2/2] Turn on -Wno-poison-system-directories on clang (#489) Clang on macos is failing because: error: include location '/usr/local/include' is unsafe for cross-compilation [-Werror,-Wpoison-system-directories] Due to some of the headers coming from brew, let's ignore this warning. --- CMake/CompilerFlags.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/CMake/CompilerFlags.cmake b/CMake/CompilerFlags.cmake index ed6e45c9e..576e027da 100644 --- a/CMake/CompilerFlags.cmake +++ b/CMake/CompilerFlags.cmake @@ -30,6 +30,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") set(FLAGS "${FLAGS} -Wno-padded") set(FLAGS "${FLAGS} -Wno-weak-vtables") set(FLAGS "${FLAGS} -Wno-covered-switch-default") + set(FLAGS "${FLAGS} -Wno-poison-system-directories") endif() if(APPLE) set(FLAGS "${FLAGS} -Wno-undef")