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 1
1
## Change log
2
2
3
+ ### 0.0.8
4
+ + Rebuild with new release
5
+
3
6
### 0.0.7
4
7
+ Rename Account create_new to create
5
8
+ Rename Account create_from_bytes to import_from_bytes
Original file line number Diff line number Diff line change 1
1
.PHONY : clean clean-pyc clean-build \
2
2
install install-dev install-test install-docs \
3
3
lint flake8 isort \
4
- tests test-unit test-integration docs
4
+ tests test-unit test-integration docs publish
5
5
6
6
# all: clean lint test docs
7
7
@@ -18,9 +18,9 @@ PIP_CMD=pip3
18
18
clean : clean-build clean-pyc
19
19
20
20
clean-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
24
24
25
25
clean-pyc :
26
26
find . -name ' *.pyc' -exec rm -f {} +
71
71
$(MAKE ) -C docs html
72
72
$(MAKE ) -C docs man
73
73
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 78
78
setup_requires = setup_requirements ,
79
79
test_suite = 'tests' ,
80
80
tests_require = test_requirements ,
81
+ python_requires = '>=3.6' ,
81
82
url = 'https://github.com/DEX-Company/convex-api-py' ,
82
83
version = '0.0.7' ,
83
84
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments