From 2795ab36c685c61b4b60a0e8aba6a70682f60d1a Mon Sep 17 00:00:00 2001 From: Virgile Andreani Date: Wed, 2 Oct 2024 17:13:11 -0400 Subject: [PATCH] Build the package with python -m build --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6664bd953..5ca602d2f7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,10 +26,10 @@ jobs: # pytest --cov=./pymc --cov-report term-missing pymc/ - name: Install release tooling run: | - pip install twine wheel + pip install build twine - name: Build package run: | - python setup.py sdist bdist_wheel + python -m build - name: Check version number match run: | echo "GITHUB_REF: ${GITHUB_REF}"