diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-29 12:04:04 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2022-11-29 12:08:46 +0100 |
commit | bf148bf9cd1e5cde05353bfdbe11124523555f5c (patch) | |
tree | 03c8e16cb867112052e5604593b6439da29f322f | |
parent | 16be220591d39c9f8f5b8e9d6bce5566a77aedac (diff) | |
download | numpy-bf148bf9cd1e5cde05353bfdbe11124523555f5c.tar.gz |
BLD: add workaround in setup.py for newer setuptools
-rwxr-xr-x | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -463,6 +463,8 @@ def setup_package(): else: #from numpy.distutils.core import setup from setuptools import setup + # workaround for broken --no-build-isolation with newer setuptools, see gh-21288 + metadata["packages"] = [] try: setup(**metadata) |