From 67f43ae9414283fc10330663613e8c1fb6455e34 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 e6664bd9533..5ca602d2f76 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}"