eth-erc721

ERC-721 'NFT' token interface with example developer badge token contract
Log | Files | Refs | LICENSE

commit efe6dbb9181e8891fa3aa186916fa8242ecd0981
parent 4c7aea577fc2e6bb40ede2cc2db7fcffeefed873
Author: lash <dev@holbrook.no>
Date:   Sun,  6 Aug 2023 16:19:54 +0100

Upgrade deps

Diffstat:
Mpython/CHANGELOG | 6++++++
Mpython/requirements.txt | 8++++----
Mpython/run_tests.sh | 1+
Mpython/setup.cfg | 2+-
Mpython/test_requirements.txt | 1-
5 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/python/CHANGELOG b/python/CHANGELOG @@ -1,3 +1,9 @@ +- 0.3.0 + * Upgrade dependencies +- 0.2.1 + * Update minter interface +- 0.2.0 + * Implement Chrono / time interface - 0.1.6 * Update python package classifiers * Upgrade to beta diff --git a/python/requirements.txt b/python/requirements.txt @@ -1,4 +1,4 @@ -chainlib-eth~=0.4.16 -chainlib~=0.4.12 -eth-erc20~=0.7.1 -eth-owned~=0.1.0 +chainlib-eth~=0.5.0 +chainlib~=0.5.0 +eth-erc20~=0.8.0 +eth-owned~=0.2.0 diff --git a/python/run_tests.sh b/python/run_tests.sh @@ -4,6 +4,7 @@ set -e set -x default_pythonpath=$PYTHONPATH:. export PYTHONPATH=${default_pythonpath:-.} +>&2 echo "using pythonpath $PYTHONPATH" for f in `ls tests/*.py`; do python $f if [ $? -gt 0 ]; then diff --git a/python/setup.cfg b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = eth-erc721 -version = 0.2.1 +version = 0.3.0 description = ERC721 interface and simple contract with deployment script providing arbitrary minting of NFTs with freely settable tokenids author = Louis Holbrook author_email = dev@holbrook.no diff --git a/python/test_requirements.txt b/python/test_requirements.txt @@ -1,3 +1,2 @@ eth_tester==0.5.0b3 py-evm==0.3.0a20 -eth-owned~=0.0.6