Skip to content

Commit

Permalink
Use oldest-supported-numpy in pyproject.toml
Browse files Browse the repository at this point in the history
Although we need some newer features of NumPy at runtime, we
can safely build against the older headers. I was not able
to detect any performance regressions from doing so either.

See dwavesystems/dwave-ocean-sdk#208
  • Loading branch information
arcondello committed May 30, 2022
1 parent 54ff495 commit fdcdc09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [
"setuptools>=46.4.0",
"wheel",
"Cython>=0.29.21,<3.0",
'numpy~=1.21.0',
'oldest-supported-numpy',
]
build-backend = "setuptools.build_meta"

Expand Down

0 comments on commit fdcdc09

Please sign in to comment.