From 88b033b9642837d2f9efca2956553a41ef066331 Mon Sep 17 00:00:00 2001 From: Justin Davis Date: Mon, 17 Nov 2025 16:46:41 -0500 Subject: [PATCH] add proposed fixes from #8731 (#8771) Co-authored-by: Wouter van Oortmerssen --- .github/workflows/release.yml | 4 ++-- python/.gitignore | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b39b04c5f..3961a9f52 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,11 +37,11 @@ jobs: - name: Install Dependencies run: | python3 -m pip install --upgrade pip - python3 -m pip install setuptools wheel twine + python3 -m pip install build twine - name: Build run: | - python3 setup.py sdist bdist_wheel + python3 -m build . - name: Upload to PyPi run: | diff --git a/python/.gitignore b/python/.gitignore index a7719469a..b8cb2e199 100644 --- a/python/.gitignore +++ b/python/.gitignore @@ -1,2 +1,5 @@ /dist/ /*.egg-info/ + +# this file is duplicated by the build step +LICENSE \ No newline at end of file