Skip to content

Commit 714586b

Browse files
committed
Updated for master
1 parent 89ed503 commit 714586b

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
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 = '0.0.1'
29+
release = '1.0.1-dev'
3030

3131

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

docs/source/index.rst

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,22 @@ code in C++ and Java as well.
2323
Installation
2424
============
2525

26-
You can install the package by running the following command,
26+
After changing your directory to project root, you can
27+
install the package by running the following command,
2728

28-
``pip install cz-pydatastructs==0.0.1``
29+
``python -m pip install .``
2930

30-
Make sure that your python version is at least ``3.5``.
31+
For development purposes, you can use the option `e` as shown below,
32+
33+
``python -m pip install -e .``
34+
35+
For building documentation execute the following commands one after
36+
the other,
37+
38+
1. ``pip install -r docs/requirements.txt``
39+
2. ``sphinx-build -b html docs/source/ docs/build/html``
40+
41+
Make sure that your python version is at least ``3.8``.
3142

3243
Why PyDataStructs?
3344
==================

pydatastructs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.1"
1+
__version__ = "1.0.1-dev"
22

33
from .linear_data_structures import *
44
from .trees 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="cz-pydatastructs",
8-
version="0.0.1",
8+
version="1.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)