We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd7e5a commit bae1020Copy full SHA for bae1020
docs/source/conf.py
@@ -26,7 +26,7 @@
26
master_doc = 'index'
27
28
# The full version, including alpha/beta/rc tags
29
-release = 'dev'
+release = '0.0.1-dev'
30
31
32
# -- General configuration ---------------------------------------------------
pydatastructs/__init__.py
@@ -1,3 +1,5 @@
1
+__version__ = "0.0.1-dev"
2
+
3
from .linear_data_structures import *
4
from .trees import *
5
from .miscellaneous_data_structures import *
setup.py
@@ -5,7 +5,7 @@
6
setuptools.setup(
7
name="pydatastructs",
8
- version="0.0.0",
+ version="0.0.1-dev",
9
author="PyDataStructs Development Team",
10
author_email="pydatastructs@googlegroups.com",
11
description="A python package for data structures",
0 commit comments