From 9f4c7a2024df8afd16bac2260d824b70761cbb6d Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 17 Oct 2023 19:23:48 +0000 Subject: [PATCH 1/2] chore: restore setup_requires in setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9b2d0fe00..04eaa0056 100644 --- a/setup.py +++ b/setup.py @@ -222,6 +222,7 @@ def _download_and_extract_local_driver( "pyee==11.0.1", "typing-extensions;python_version<='3.8'", ], + setup_requires=["setuptools-scm==8.0.4", "wheel==0.41.2"], classifiers=[ "Topic :: Software Development :: Testing", "Topic :: Internet :: WWW/HTTP :: Browsers", From b1aeb5a655f0a60e07e65aaa7a48fd5882497678 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 17 Oct 2023 19:36:22 +0000 Subject: [PATCH 2/2] comment --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 04eaa0056..98b2dc854 100644 --- a/setup.py +++ b/setup.py @@ -222,6 +222,7 @@ def _download_and_extract_local_driver( "pyee==11.0.1", "typing-extensions;python_version<='3.8'", ], + # TODO: Can be removed once we migrate to pypa/build or pypa/installer. setup_requires=["setuptools-scm==8.0.4", "wheel==0.41.2"], classifiers=[ "Topic :: Software Development :: Testing",