File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 11## Change log
22
3+ ### 0.0.8
4+ + Rebuild with new release
5+
36### 0.0.7
47+ Rename Account create_new to create
58+ Rename Account create_from_bytes to import_from_bytes
Original file line number Diff line number Diff line change 11.PHONY : clean clean-pyc clean-build \
22 install install-dev install-test install-docs \
33 lint flake8 isort \
4- tests test-unit test-integration docs
4+ tests test-unit test-integration docs publish
55
66# all: clean lint test docs
77
@@ -18,9 +18,9 @@ PIP_CMD=pip3
1818clean : clean-build clean-pyc
1919
2020clean-build :
21- rm -fr build/
22- rm -fr dist/
23- rm -fr * .egg-info
21+ rm -rf build/
22+ rm -rf dist/
23+ rm -rf * .egg-info
2424
2525clean-pyc :
2626 find . -name ' *.pyc' -exec rm -f {} +
7171 $(MAKE ) -C docs html
7272 $(MAKE ) -C docs man
7373
74-
74+ publish :
75+ make clean
76+ pip install twine
77+ python3 setup.py sdist bdist_wheel
78+ echo " __token__" | python3 -m twine upload dist/*
Original file line number Diff line number Diff line change 7878 setup_requires = setup_requirements ,
7979 test_suite = 'tests' ,
8080 tests_require = test_requirements ,
81+ python_requires = '>=3.6' ,
8182 url = 'https://github.com/DEX-Company/convex-api-py' ,
8283 version = '0.0.7' ,
8384 zip_safe = False ,
You can’t perform that action at this time.
0 commit comments