Skip to content

Commit

Permalink
MAINT: removing dependency on NumPy C API
Browse files Browse the repository at this point in the history
  • Loading branch information
saullocastro committed Nov 17, 2023
1 parent 4b3fb2b commit 89d8806
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "numpy>=1.23.0", "scipy", "cython", "matplotlib"]
requires = ["setuptools", "wheel", "numpy", "scipy", "cython", "matplotlib"]
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import subprocess
from setuptools import setup, find_packages, Extension

import numpy as np
from Cython.Build import cythonize


Expand Down Expand Up @@ -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',
]

Expand Down

0 comments on commit 89d8806

Please sign in to comment.