From bc1029c031c20d05a08408193f092d6f72cd1aca Mon Sep 17 00:00:00 2001 From: Lars Date: Thu, 8 Feb 2024 23:40:17 +0100 Subject: [PATCH] Add flit to required libs for building the distribution files --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 70b727ea..59286ec2 100644 --- a/noxfile.py +++ b/noxfile.py @@ -161,7 +161,7 @@ def build_release(session): Builds a release: Creates sdist and wheel """ version = _validate_version(session) - session.install('build', 'wheel') + session.install('build', 'wheel', 'flit-core') git = partial(session.run, 'git', external=True) git('fetch') git('fetch', '--tags')