From eeb1b96af878f1dd16b727d9ce61d5ffe001f32a Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Mon, 26 Aug 2024 17:05:57 -0400 Subject: [PATCH] Use build module This tries to move past deprecation of setup.py functionality. References: * https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary Signed-off-by: Alex Nelson --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index c2c784e..8fdb7ce 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -63,8 +63,8 @@ jobs: # Build the binary wheel as well as the source tar - name: Build Objects run: | - pip install -q twine wheel - python setup.py sdist bdist_wheel + pip install -q twine build + python -m build # Ensure the objects were packaged correctly and there wasn't an issue with # the compilation or packaging process.