Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ This release achieves `dpnp` compatibility with Python 3.14 and enables distribu

* Enabled support of Python 3.14 [#2631](https://github.com/IntelPython/dpnp/pull/2631)

### Changed

* Bumped oneMath version up to `v0.9` [#2655](https://github.com/IntelPython/dpnp/pull/2655)

### Fixed

* Updated tests for erf functions to pass with `scipy>=0.16.0` per each integer dtype [#2669](https://github.com/IntelPython/dpnp/pull/2669)
Expand Down
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ if(_use_onemath)
else()
FetchContent_Declare(
onemath_library
GIT_REPOSITORY https://github.com/uxlfoundation/oneMath.git
GIT_TAG 5c7e1e7a710556e51f70ecc8dd26dfd04e3abf41 # v0.8
GIT_REPOSITORY https://github.com/uxlfoundation/oneMath.git
GIT_TAG
6ff3a43e555dbb20357017d48f0f6c6263259895 # v0.9
)
endif()

Expand Down
Loading