Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ all releases are available on `Anaconda.org
<https://anaconda.org/pytask/pytask-latex>`_.


0.0.12 - 2021-xx-xx
-------------------

- :gh:`19` fixes some post-release issues.


0.0.11 - 2021-02-25
-------------------

Expand Down
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
.. image:: https://anaconda.org/pytask/pytask-latex/badges/platforms.svg
:target: https://anaconda.org/pytask/pytask-latex

.. image:: https://img.shields.io/pypi/l/pytask-latex
:alt: PyPI - License

.. image:: https://github.com/pytask-dev/pytask-latex/workflows/Continuous%20Integration%20Workflow/badge.svg?branch=main
:target: https://github.com/pytask-dev/pytask-latex/actions?query=branch%3Amain

Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ ignore:
- ".tox/**/*"
- "setup.py"
- "versioneer.py"
- "src/pytask_parallel/_version.py"
- "src/pytask_latex/_version.py"
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
from pathlib import Path

from setuptools import find_packages
from setuptools import setup

import versioneer


README = Path("README.rst").read_text()

PROJECT_URLS = {
"Documentation": "https://github.com/pytask-dev/pytask-latex",
"Github": "https://github.com/pytask-dev/pytask-latex",
"Tracker": "https://github.com/pytask-dev/pytask-latex/issues",
"Changelog": "https://github.com/pytask-dev/pytask-latex/blob/main/" "CHANGES.rst",
"Changelog": "https://github.com/pytask-dev/pytask-latex/blob/main/CHANGES.rst",
}


Expand All @@ -17,6 +21,8 @@
version=versioneer.get_version(),
cmd_class=versioneer.get_cmdclass(),
description="Compile LaTeX documents with pytask.",
long_description=README,
long_description_content_type="text/x-rst",
author="Tobias Raabe",
author_email="raabe@posteo.de",
python_requires=">=3.6",
Expand Down