Skip to content

Commit

Permalink
Merge pull request #34 from Kludex/bump-mkautodoc
Browse files Browse the repository at this point in the history
Version 0.2.0
  • Loading branch information
tomchristie committed Aug 3, 2022
2 parents 7807afb + f5c69d7 commit ad41abc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mkautodoc/__init__.py
@@ -1,5 +1,5 @@
from .extension import MKAutoDocExtension, makeExtension


__version__ = "0.1.0"
__version__ = "0.2.0"
__all__ = ["MKAutoDocExtension", "makeExtension"]
2 changes: 1 addition & 1 deletion mkautodoc/extension.py
@@ -1,7 +1,7 @@
from markdown import Markdown
from markdown.extensions import Extension
from markdown.blockprocessors import BlockProcessor
from markdown.util import etree
from xml.etree import ElementTree as etree
import importlib
import inspect
import re
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
markdown
-e .

# Testing
black
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -37,7 +37,7 @@ def get_packages(package):
author='Tom Christie',
author_email='tom@tomchristie.com',
packages=get_packages('mkautodoc'),
install_requires=[],
install_requires=["Markdown"],
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit ad41abc

Please sign in to comment.