Skip to content

Commit

Permalink
bugfix in setup.py: meta-info longdescription is markdown for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
kbr committed Jul 9, 2023
1 parent d06050c commit fa214c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/sources/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Version History
===============


1.12.2 - 2023-07-09
-------------------

- bugfix in 'setup.py`: add `long_description_content_type="text/markdown"`, because it is not used as default.


1.12.1 - 2023-07-09
-------------------

Expand Down
2 changes: 1 addition & 1 deletion fritzconnection/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
https://fritzconnection.readthedocs.io/
"""

__version__ = "1.12.1"
__version__ = "1.12.2"

# import shortcuts
from .core.fritzconnection import FritzConnection
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def get_version():
packages=find_packages(exclude=["*.tests"]),
license="MIT",
description="Communicate with the AVM FRITZ!Box",
long_description_content_type="text/markdown",
long_description=get_long_description(),
author="Klaus Bremer",
author_email="[email protected]",
Expand Down

0 comments on commit fa214c5

Please sign in to comment.