From 62dbf8e654f72b5f95fc774ef0e296ed1751693436fb389d054e7b69dc0022fd Mon Sep 17 00:00:00 2001 From: Benjamin Greiner <code@bnavigator.de> Date: Fri, 25 Mar 2022 12:32:08 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flit-core?expand=0&rev=21 --- build_dists.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 build_dists.py diff --git a/build_dists.py b/build_dists.py deleted file mode 100644 index 3cee836..0000000 --- a/build_dists.py +++ /dev/null @@ -1,17 +0,0 @@ -"""Build flit_core to upload to PyPI. - -Normally, this should only be used by me when making a release. -""" -import os - -from flit_core import buildapi - -os.chdir(os.path.dirname(os.path.abspath(__file__))) - -print("Building sdist") -sdist_fname = buildapi.build_sdist('dist/') -print(os.path.join('dist', sdist_fname)) - -print("\nBuilding wheel") -whl_fname = buildapi.build_wheel('dist/') -print(os.path.join('dist', whl_fname))