Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
+ switch back to markdown for pypi deployment

Signed-off-by: Konrad Weihmann <[email protected]>
  • Loading branch information
priv-kweihmann committed May 30, 2021
1 parent 238cba2 commit 48f16c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
_long_description_content_type = "text/plain"
try:
_long_description = subprocess.check_output(
["pandoc", "--from", "markdown", "--to", "rst", "README.md"]).decode("utf-8")
_long_description_content_type = "text/x-rst"
["pandoc", "--from", "markdown", "--to", "markdown", "README.md"]).decode("utf-8")
_long_description_content_type = "text/markdown"
except (subprocess.CalledProcessError, FileNotFoundError):
pass

Expand All @@ -16,7 +16,7 @@

setuptools.setup(
name="oelint_parser",
version="1.0.12",
version="1.1.0",
author="Konrad Weihmann",
author_email="[email protected]",
description="Alternative parser for bitbake recipes",
Expand Down

0 comments on commit 48f16c6

Please sign in to comment.