Skip to content

Commit c7a5b20

Browse files
committed
upgrade building, moving to Makefile
1 parent bfd706d commit c7a5b20

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@ install:
33
. .env/bin/activate && pip3 install -r requirements.txt
44

55
test:
6-
. .env/bin/activate && python3 -m pytest -vv -s
6+
. .env/bin/activate && python3 -m pytest -vv -s
7+
8+
publish: test
9+
rm -rf dist/*
10+
. .env/bin/activate && python3 setup.py sdist bdist_wheel
11+
. .env/bin/activate && python3 -m twine upload dist/*

publish.sh

-3
This file was deleted.

requirements.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ bip-utils==1.0.5
77
eth-keyfile==0.5.1
88
rlp==1.2.0
99
eth-abi==2.1.1
10-
voluptuous==0.12.0
10+
voluptuous==0.12.0
11+
wheel
12+
twine

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="thor-devkit",
10-
version="1.0.8",
10+
version="1.0.9",
1111
author="laalaguer",
1212
author_email="[email protected]",
1313
description="SDK to interact with VeChain Thor public blockchain.",

test.sh

-1
This file was deleted.

0 commit comments

Comments
 (0)