Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
verify-metadata: false
verbose: true
verbose: true
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tool.poetry]
name = "python-web3-wallet"
version = "0.0.12"
version = "0.0.14"
description = "Streamlit component that allows users to connect a wallet and send transactions with dynamic recipients and amounts"
authors = ["Gnosis AI <ai@gnosis.io>"]
license = "MIT"
readme = "README.md"
# If format not specified, include only applies to sdist not wheel https://python-poetry.org/docs/pyproject/#exclude-and-include.
include = [
"python_web3_wallet/frontend/build/**/*"
{ path = "python_web3_wallet/frontend/build/**/*", format = ["sdist", "wheel"] }
Comment on lines +8 to +10
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was unexpected 😮

]
packages = [
{ include = "python_web3_wallet" }
Expand Down
2 changes: 1 addition & 1 deletion python_web3_wallet/frontend/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PORT=3001
BROWSER=none
REACT_APP_RAINBOW_WALLET_PROJECT_ID=
REACT_APP_RAINBOW_PROJECT_ID=
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

previous incosistency between .env and .env.example, fixed here

PYPI_TOKEN=
Loading