Skip to content

Commit bae1020

Browse files
authored
Added version attributes (#420)
1 parent 3bd7e5a commit bae1020

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
master_doc = 'index'
2727

2828
# The full version, including alpha/beta/rc tags
29-
release = 'dev'
29+
release = '0.0.1-dev'
3030

3131

3232
# -- General configuration ---------------------------------------------------

pydatastructs/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
__version__ = "0.0.1-dev"
2+
13
from .linear_data_structures import *
24
from .trees import *
35
from .miscellaneous_data_structures import *

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pydatastructs",
8-
version="0.0.0",
8+
version="0.0.1-dev",
99
author="PyDataStructs Development Team",
1010
author_email="pydatastructs@googlegroups.com",
1111
description="A python package for data structures",

0 commit comments

Comments
 (0)