From 9462fd30abed1f2e3f566bf112fb3cac3ad82d51 Mon Sep 17 00:00:00 2001 From: Nick Touran Date: Tue, 30 Jan 2024 07:52:23 -0800 Subject: [PATCH] Add stub setup.py for editable installations. In order to run: pip install -e .[docs,tests] We found that you either need to add a stub setup.py like this or be using a very recent version of pip. In order to streamline the installation process on more machines with a relaxed pip version constraint, this stub is added. Fixes #1639. --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..4b59d36df --- /dev/null +++ b/setup.py @@ -0,0 +1,6 @@ +""" +Stub setup.py to allow editable installations on older pips. +""" +from setuptools import setup + +setup()