Skip to content
Snippets Groups Projects
Commit 0aeddf1e authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Increment version to 0.1.1

Fixing bug #4 leads to this increment.
parent 8a12951a
No related tags found
1 merge request!1Bug/return code
Pipeline #
......@@ -15,12 +15,19 @@ if __name__ == "__main__":
default="markdown",
help="The syntax parser to be used for the listed files.")
parser.add_argument("--version", action="store_true",
help="Prints the version of the doxec package and exits.")
parser.add_argument("documents", metavar="DOCUMENT", nargs="+", default=[],
help="A document from which the code examples should be parsed and "
"executed")
args = parser.parse_args()
if args.version:
print("Doxec package version: %s" % doxec.__version__)
sys.exit(0)
parser = doxec.parser[args.syntax]
def monitor(op, exception):
......
......@@ -3,6 +3,8 @@ import abc
import re
import subprocess
__version__ = "0.1.1"
class TestException(Exception):
"""
This exception should be raised, if an operation performed tests and one
......
......@@ -5,7 +5,7 @@ from setuptools import setup
setup(
name="doxec",
version= "0.1.0",
version= "0.1.1",
author="Frank Sauerburger",
author_email= "frank@sauerburger.com",
description=("Run documentation and test whether the examples work."),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment