Skip to content
This repository was archived by the owner on Oct 5, 2021. It is now read-only.

Commit 42f956a

Browse files
committed
upping version to 0.0.3
1 parent 678c51c commit 42f956a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ clean: ## clean the repository
5454
install: ## install the package
5555
python3 setup.py install
5656

57+
dist: ## dist to pypi
58+
python3 setup.py sdist upload -r pypi
59+
5760
# Thanks to Francoise at marmelab.com for this
5861
.DEFAULT_GOAL := help
5962
help:
@@ -62,4 +65,4 @@ help:
6265
print-%:
6366
@echo '$*=$($*)'
6467

65-
.PHONY: clean run runconfig sandbox backtest backtest_config test tests test_verbose help install docs data
68+
.PHONY: clean run runconfig sandbox backtest backtest_config test tests test_verbose help install docs data dist

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = 'v0.0.11'
60+
version = 'v0.0.3'
6161
# The full version, including alpha/beta/rc tags.
62-
release = 'v0.0.11'
62+
release = 'v0.0.3'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
setup(
1111
name='algocoin',
12-
version='0.0.2',
12+
version='0.0.3',
1313
description='Algorithmic trading library for cryptocurrencies',
1414
long_description=long_description,
1515
url='https://github.com/timkpaine/algo-coin',
16-
download_url='https://github.com/timkpaine/algo-coin/archive/v0.0.2.tar.gz',
16+
download_url='https://github.com/timkpaine/algo-coin/archive/v0.0.3.tar.gz',
1717
author='Tim Paine',
1818
author_email='[email protected]',
1919
license='GPL',

0 commit comments

Comments
 (0)