Skip to content

Commit 4655f2c

Browse files
Support for build with numpy 2.0 (#809)
* remove oldest-supported-numpy * switch to macos-12 * same rule as tabmat * [skip-ci] changelog
1 parent c8923e0 commit 4655f2c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ubuntu-20.04, macos-11, windows-2019]
15+
os: [ubuntu-20.04, macos-12, windows-2019]
1616

1717
steps:
1818
- uses: actions/checkout@v4

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Unreleased
1818

1919
- Move the linting and formatting to ruff.
2020
- Removed libblas MKL from the development environment.
21+
- Replace deprecated 'oldest-supported-numpy' dependency with 'numpy' to support 2.0 release.
2122

2223
3.0.1 - 2024-05-23
2324
------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [
44
'setuptools-scm',
55
'wheel',
66
'Cython',
7-
'oldest-supported-numpy',
7+
'numpy>=1.25',
88
'scikit-learn',
99
]
1010

0 commit comments

Comments
 (0)