Skip to content

Commit e40d548

Browse files
committed
Requirements: exclude NumPy V2 until it's supported
1 parent 7e4d1b9 commit e40d548

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
For this release, test coverage is 72%.
66

7+
- Preparing for NumPy V2 compatibility: this is a work in progress, as NumPy V2 is not
8+
yet released. In the meantime, requirements have been updated to exclude NumPy V2.
79
- Fix `QwtPlot.axisInterval` (was raising `AttributeError`)
810
- Removed unnecessary dependencies (pytest-qt, pytest-cov)
911
- Moved `conftest.py` to project root

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.12",
3232
]
3333
requires-python = ">=3.8, <4"
34-
dependencies = ["NumPy>=1.21", "QtPy>=1.9"]
34+
dependencies = ["NumPy>=1.21,<2", "QtPy>=1.9"]
3535
dynamic = ["version"]
3636

3737
[project.urls]

0 commit comments

Comments
 (0)