Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
master_doc = 'index'

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


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions pydatastructs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = "0.0.1-dev"

from .linear_data_structures import *
from .trees import *
from .miscellaneous_data_structures import *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pydatastructs",
version="0.0.0",
version="0.0.1-dev",
author="PyDataStructs Development Team",
author_email="[email protected]",
description="A python package for data structures",
Expand Down