You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int_conv: Fix specific scalar conversion and support more scalar type
int_conv: Add more integer type binding and add a unit test
changelog: Add changelog entry
int_conv: Manage int8_t and long on Windows
int_conv: Try to use stdint type to manage long hack on windows
int_conv: Fix Windows build
int_conv: Try to fix Mac build and don't compile twice 64 bits integer on Mac and Windows
int_conv: Don't use np.dtypes (introduced in numpy 1.25)
int_conv: Test long and int difference in unit test
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
int_conv: Expose long in MacOS
int_conv: Don't use deprecated type np.intc
int_conv: Fix Mac build
int_conv: Remove int128 (doesn't exists)
int_conv: Disable long long test on Mac because the type is not reachable
int_conv: Begin to work on promotion
int_conv: Add unsigned promotion
int_conv: Manage complex promotion
int_conv: Split matrix binding to avoid memory issue while building
int_conv: Split decomposition binding to avoid memory issue while building
int_conv: Use clongdouble instead of complex256
int_conv: Avoid out of heap space error on Windows
int_conv: Fix test for Mac
int_conv: Try to manage longlong on Mac and int on Windows, also reduce compile time
int_conv: Manage Windows and Mac int and long long when casting
int_conv: Allow scalar to complex conversion
int_conv: Manage casting from numpy to eigen with tensor
int_conv: Add changelog entries
int_conv: Remove conversion from Eigen to Numpy
int_conv: Add reference to this PR
int_conv: Activate SciPy tests by default
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9
9
### Added
10
10
- Allow use of installed JRL-cmakemodule ([#446](https://github.com/stack-of-tasks/eigenpy/pull/446)
11
11
- Support of Numpy 2.0.0b1 ([#448](https://github.com/stack-of-tasks/eigenpy/pull/448))
12
+
- Support new primitive type (char, int8_t, uint8_t, int16_t, uint16_t, uint32_t, uint64_t) ([#455]()https://github.com/stack-of-tasks/eigenpy/pull/455)
13
+
- Support conversion between signed <-> unsigned integers ([#455](https://github.com/stack-of-tasks/eigenpy/pull/455))
14
+
- Support conversion between complex numbers ([#455](https://github.com/stack-of-tasks/eigenpy/pull/455))
12
15
13
16
### Fixed
14
17
- Fix unit test build in C++11 ([#442](https://github.com/stack-of-tasks/eigenpy/pull/442))
15
18
- Fix unit test function signature [#443](https://github.com/stack-of-tasks/eigenpy/pull/443))
0 commit comments