diff --git a/docs/intro.rst b/docs/intro.rst index 524adae..f1e2815 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -48,7 +48,14 @@ We highly recommend starting with the unit-test codes. Checkout ./tests director .. code-block:: bash - $ tests> nosetests ./tests/algo/test_algo.py -v + $ buffalo.git/tests> nosetests ./algo/test_algo.py -v + + +or + +.. code-block:: bash + + $ buffalo.git/tests> pytest ./algo/test_algo.py -v Database diff --git a/setup.py b/setup.py index c3b12fc..a41da53 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ MAJOR = 1 MINOR = 0 -MICRO = 6 +MICRO = 7 Release = True STAGE = {True: '', False: 'b'}.get(Release) VERSION = f'{MAJOR}.{MINOR}.{MICRO}{STAGE}'