Skip to content

Commit

Permalink
upgrade building, moving to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
laalaguer committed Mar 25, 2021
1 parent bfd706d commit c7a5b20
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ install:
. .env/bin/activate && pip3 install -r requirements.txt

test:
. .env/bin/activate && python3 -m pytest -vv -s
. .env/bin/activate && python3 -m pytest -vv -s

publish: test
rm -rf dist/*
. .env/bin/activate && python3 setup.py sdist bdist_wheel
. .env/bin/activate && python3 -m twine upload dist/*
3 changes: 0 additions & 3 deletions publish.sh

This file was deleted.

4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ bip-utils==1.0.5
eth-keyfile==0.5.1
rlp==1.2.0
eth-abi==2.1.1
voluptuous==0.12.0
voluptuous==0.12.0
wheel
twine
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="thor-devkit",
version="1.0.8",
version="1.0.9",
author="laalaguer",
author_email="[email protected]",
description="SDK to interact with VeChain Thor public blockchain.",
Expand Down
1 change: 0 additions & 1 deletion test.sh

This file was deleted.

0 comments on commit c7a5b20

Please sign in to comment.