From cdbdfc0f99019f9db13170eaf2e594d652d4aa7a Mon Sep 17 00:00:00 2001 From: Mirella de Medeiros Date: Fri, 2 Feb 2024 11:59:43 -0300 Subject: [PATCH] Add build package to tests --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f6c2079f7..451ceafd5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,13 @@ jobs: steps: - checkout - python/load-cache + - run: + name: Test Build Package + command: | + python3 -m pip install --upgrade pip + pip install twine build + python3 -m build + twine check dist/* - run: name: Fix openssl for ripemd160 loading @@ -95,7 +102,9 @@ jobs: - run: name: Build Package command: | - python3 setup.py sdist bdist_wheel + python3 -m pip install --upgrade pip + pip install twine build + python3 -m build twine check dist/* - run: