From 0a268f25f73768a4bd5783794250b914ef34843c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 17 May 2023 10:24:21 +0200 Subject: [PATCH] fix: build-time warning Installing from source triggers a warning on pip 23.0.1 if pyproject.toml is not present. Building does not require any special dependencies, so we just add a simple pyproject.toml file. See: https://github.com/overhangio/tutor/issues/836 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d1e6ae6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools", "wheel"]