From cc4da2072b12d463d6f44e494244b9315fd2fa8b Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Sun, 21 Aug 2022 06:06:21 +0100 Subject: [PATCH] fix setuptools editable installs - see https://github.com/pypa/setuptools/pull/3488 --- pyproject.toml | 4 ++-- setup.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e8755f2..d70c222 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4", - "cuvec>=2.8.0", "miutil[cuda]>=0.4.0", +requires = ["setuptools>=42,<64", "wheel", "setuptools_scm[toml]>=3.4", + "cuvec>=2.11.0", "miutil[cuda]>=0.4.0", "scikit-build>=0.11.0", "cmake>=3.18", "ninja"] [tool.setuptools_scm] diff --git a/setup.cfg b/setup.cfg index 848c312..5483d52 100644 --- a/setup.cfg +++ b/setup.cfg @@ -36,7 +36,7 @@ classifiers= Topic :: Utilities [options] setup_requires= - setuptools>=42 + setuptools>=42,<64 wheel setuptools_scm[toml] cuvec>=2.11.0