Skip to content

Commit

Permalink
Merge pull request #492 from jcarpent/topic/devel
Browse files Browse the repository at this point in the history
Fix compatibility issue with NumPy 2.x on Windows
  • Loading branch information
jcarpent authored Aug 25, 2024
2 parents 6753480 + 161293b commit bc6e03f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Fixed
- Fix compatibility issue with NumPy 2.x on Windows ([#492](https://github.com/stack-of-tasks/eigenpy/pull/492))

## [3.8.0] - 2024-08-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion cmake
2 changes: 1 addition & 1 deletion src/numpy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void call_PyArray_InitArrFuncs(PyArray_ArrFuncs* funcs) {
PyArray_InitArrFuncs(funcs);
}

int call_PyArray_RegisterDataType(PyArray_Descr* dtype) {
int call_PyArray_RegisterDataType(PyArray_DescrProto* dtype) {
return PyArray_RegisterDataType(dtype);
}

Expand Down

0 comments on commit bc6e03f

Please sign in to comment.