From 89d8806cf627617ba8fd00088857113f1bc46d1e Mon Sep 17 00:00:00 2001 From: "Saullo G. P. Castro" Date: Fri, 17 Nov 2023 11:09:48 +0100 Subject: [PATCH] MAINT: removing dependency on NumPy C API --- pyproject.toml | 2 +- setup.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 11e466b..ef483f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [build-system] -requires = ["setuptools", "wheel", "numpy>=1.23.0", "scipy", "cython", "matplotlib"] +requires = ["setuptools", "wheel", "numpy", "scipy", "cython", "matplotlib"] diff --git a/setup.py b/setup.py index 35aae63..4a38a8c 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,6 @@ import subprocess from setuptools import setup, find_packages, Extension -import numpy as np from Cython.Build import cythonize @@ -132,7 +131,6 @@ def read(fname): root_path = os.path.dirname(os.path.abspath(__file__)).replace('\\', '/') + '/compmech' include_dirs = [ - np.get_include(), root_path + '/include', ]