Skip to content

Commit

Permalink
Release 3.2.3 (#220)
Browse files Browse the repository at this point in the history
- Fixes: Fatal Python error: PyMUTEX_LOCK(gil->mutex) failed
  • Loading branch information
jrmadsen committed Jul 18, 2021
1 parent 4725f4e commit d535e47
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# timemory

## Version 3.2.3

> Date: Sun Jul 18 05:53:34 2021 -0500
- Fixes: Fatal Python error: PyMUTEX_LOCK(gil->mutex) failed on macOS

## Version 3.2.2

> Date: Wed Jul 14 20:42:29 2021 -0500
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.2.2
3.2.3
4 changes: 3 additions & 1 deletion cmake/Modules/ConfigPython.cmake
Expand Up @@ -280,7 +280,9 @@ if(TIMEMORY_BUILD_PYTHON OR pybind11_FOUND)
list(REMOVE_DUPLICATES _PYBIND11_INCLUDE_DIRS)
endif()
timemory_target_compile_definitions(timemory-python INTERFACE TIMEMORY_USE_PYTHON)
target_link_libraries(timemory-python INTERFACE ${PYTHON_LIBRARIES})
if(NOT APPLE)
target_link_libraries(timemory-python INTERFACE ${PYTHON_LIBRARIES})
endif()
target_include_directories(timemory-python SYSTEM INTERFACE
${PYTHON_INCLUDE_DIRS}
${PYBIND11_INCLUDE_DIRS}
Expand Down

0 comments on commit d535e47

Please sign in to comment.