Skip to content

Commit 09e4906

Browse files
committed
update for manual publishing
1 parent 0531f02 commit 09e4906

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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

Makefile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
1818
clean: clean-build clean-pyc
1919

2020
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
2424

2525
clean-pyc:
2626
find . -name '*.pyc' -exec rm -f {} +
@@ -71,4 +71,8 @@ docs:
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/*

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
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,

0 commit comments

Comments
 (0)