From 35e51af402fa92d8b754d9875582ca3f261ab92b Mon Sep 17 00:00:00 2001 From: gabrielfior Date: Tue, 7 Jan 2025 12:37:49 -0300 Subject: [PATCH 1/2] Changed README --- python_web3_wallet/README | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python_web3_wallet/README b/python_web3_wallet/README index 5fa268a..95a73c8 100644 --- a/python_web3_wallet/README +++ b/python_web3_wallet/README @@ -4,11 +4,14 @@ Run [app.py](app.py) with Streamlit - edit [PythonWeb3Wallet](frontend/src/Pytho ## Publishing +1. Build frontend ``` -# build -python setup.py sdist bdist_wheel +npm build --prefix python_web3_wallet/frontend ``` +2. Build python wheel +``` +python setup.py sdist bdist_wheel ``` # publish on testpy python -m twine upload --repository testpypi dist/* --verbose From 3dfdb57605f46a751701440d731ed4150a0f3835 Mon Sep 17 00:00:00 2001 From: gabrielfior Date: Tue, 7 Jan 2025 13:13:14 -0300 Subject: [PATCH 2/2] Bumped version to 0.0.6 --- python_web3_wallet/README | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python_web3_wallet/README b/python_web3_wallet/README index 95a73c8..de09d9f 100644 --- a/python_web3_wallet/README +++ b/python_web3_wallet/README @@ -6,7 +6,7 @@ Run [app.py](app.py) with Streamlit - edit [PythonWeb3Wallet](frontend/src/Pytho 1. Build frontend ``` -npm build --prefix python_web3_wallet/frontend +npm run build --prefix python_web3_wallet/frontend ``` 2. Build python wheel diff --git a/setup.py b/setup.py index 5fe4741..38978b6 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="python_web3_wallet", - version="0.0.5", + version="0.0.6", author="Gnosis AI", author_email="ai@gnosis.io", description="Streamlit component that allows users to connect a wallet and send transactions with dynamic recipients and amounts",