Skip to content

Commit 60e2f7b

Browse files
authored
3.3.10 Release (#352)
1 parent f1efdc8 commit 60e2f7b

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CMake/ChoosePython.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ if(${USE_PYTHON_VERSION} STREQUAL auto)
5353
# Finding Boost first if needed because if the Python3 interpreter is found
5454
# first there's no way back.
5555
if(NOT CHOOSE_PYTHON_IGNORE_BOOST)
56-
foreach(__suffix 3 310 -py310 39 -py39 38 -py38 37 -py37 36 -py36 )
56+
foreach(__suffix 3 311 -py311 310 -py310 39 -py39 38 -py38 37 -py37 36 -py36 )
5757
find_package(Boost COMPONENTS python${__suffix} QUIET)
5858
if(Boost_FOUND)
5959
string(TOUPPER ${__suffix} __boost_python_library_suffix)
@@ -76,8 +76,8 @@ if(${USE_PYTHON_VERSION} STREQUAL 3)
7676
set(USE_PYTHON3 ON)
7777
# Enforcing a Python version to be searched by scripts included by
7878
# Common.cmake that search for Python (e.g. cpplint)
79-
set(PYTHON_ADDITIONAL_VERSIONS 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2)
80-
set(Python_ADDITIONAL_VERSIONS 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2)
79+
set(PYTHON_ADDITIONAL_VERSIONS 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2)
80+
set(Python_ADDITIONAL_VERSIONS 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2)
8181
set(PythonLibs_FIND_VERSION 3)
8282
add_definitions(-DUSE_PYTHON3=1)
8383
set(USE_BOOST_PYTHON_VERSION ${__boost_python_library_suffix})

CMake/CompileOptions.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ function(compile_options TARGET_NAME)
1414
-Winit-self
1515
-Wno-unknown-pragmas
1616
-Wno-deprecated-copy
17+
-Wno-deprecated-declarations
1718
-Wno-error=unused-function
1819
-Wshadow
1920
-Werror

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Base configuration
99
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
10-
project(Brion VERSION 3.3.9)
10+
project(Brion VERSION 3.3.10)
1111
set(Brion_VERSION_ABI 10)
1212

1313
# Enforce C++14 standard

brain/python/brion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
from . import neuron
2424

25-
__version__ = '3.3.9'
25+
__version__ = '3.3.10'
2626

2727
# Import the test helper module if present
2828
try:

deps/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if(NOT sonata_FOUND AND NOT TARGET sonata::sonata_shared)
4747
FetchContent_Declare(
4848
libsonata
4949
GIT_REPOSITORY https://github.com/BlueBrain/libsonata.git
50-
GIT_TAG v0.1.13
50+
GIT_TAG v0.1.20
5151
GIT_SHALLOW OFF # Required for its own CMakeLists.txt not to fail
5252
GIT_SUBMODULES_RECURSE ON
5353
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/libsonata

0 commit comments

Comments
 (0)