Skip to content

Commit 6fd31f5

Browse files
Merge pull request #10 from mjs2600/fix/support-numpy-v2
Support Numpy Version 2
2 parents bcfcb8e + ee49168 commit 6fd31f5

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Build Windows and MacOS Package
88
strategy:
99
matrix:
10-
python: ['3.8', '3.9', '3.10', '3.11']
10+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1111
os: [windows-latest, macos-latest]
1212
runs-on: ${{ matrix.os }}
1313
steps:
@@ -40,7 +40,7 @@ jobs:
4040
name: Build Linux Package
4141
strategy:
4242
matrix:
43-
python: ['3.8', '3.9', '3.10', '3.11']
43+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout Code

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["setuptools >= 40.6.0", "wheel", "numpy", "cython", "versioneer-518"]
2+
requires = ["setuptools >= 40.6.0", "wheel", "numpy >= 2.0", "cython", "versioneer-518"]
33
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ classifiers =
1515
Development Status :: 5 - Production/Stable
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3 :: Only
18-
Programming Language :: Python :: 3.4
19-
Programming Language :: Python :: 3.5
20-
Programming Language :: Python :: 3.6
21-
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.9
19+
Programming Language :: Python :: 3.10
20+
Programming Language :: Python :: 3.11
21+
Programming Language :: Python :: 3.12
22+
Programming Language :: Python :: 3.13
2223
Operating System :: POSIX :: Linux
2324
Operating System :: Unix
2425
Operating System :: MacOS

0 commit comments

Comments
 (0)