Skip to content

Commit 14ac94d

Browse files
authored
Pin NumPy to < 2.0 (pyccel#1920)
Pin NumPy to < 2.0 to avoid errors due to sign implementation change as seen in pyccel#1915
1 parent dbd23df commit 14ac94d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ All notable changes to this project will be documented in this file.
4343

4444
### Changed
4545

46+
- #1920 : Add a maximum version for NumPy.
4647
- #1836 : Move `epyccel` module to `pyccel.commands.epyccel` and add support for shortcut import `from pyccel import epyccel`.
4748
- #1720 : functions with the `@inline` decorator are no longer exposed to Python in the shared library.
4849
- #1720 : Error raised when incompatible arguments are passed to an `inlined` function is now fatal.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keywords = [
1616
]
1717
dependencies = [
1818
"filelock >= 3.4.0",
19-
"numpy >= 1.16",
19+
"numpy >= 1.16, < 2.0",
2020
"sympy >= 1.2",
2121
"termcolor >= 1.0.0",
2222
"textx >= 2.2",

0 commit comments

Comments
 (0)