-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ switch back to markdown for pypi deployment Signed-off-by: Konrad Weihmann <[email protected]>
- Loading branch information
1 parent
238cba2
commit 48f16c6
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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", | ||
|