Skip to content

Add more shields. #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 27, 2021
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
19 changes: 17 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,23 @@

.. start-badges

.. image:: https://img.shields.io/pypi/v/pytask?color=blue
:alt: PyPI
:target: https://pypi.org/project/pytask

.. image:: https://img.shields.io/pypi/pyversions/pytask
:alt: PyPI - Python Version
:target: https://pypi.org/project/pytask

.. image:: https://anaconda.org/pytask/pytask/badges/version.svg
:target: https://anaconda.org/pytask/pytask

.. image:: https://anaconda.org/pytask/pytask/badges/platforms.svg
:target: https://anaconda.org/pytask/pytask

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

.. image:: https://readthedocs.org/projects/pytask-dev/badge/?version=latest
:target: https://pytask-dev.readthedocs.io/en/latest

Expand Down Expand Up @@ -78,11 +89,15 @@ Installation

.. start-installation

pytask is available on `Anaconda.org <https://anaconda.org/pytask/pytask>`_. Install the
package with
pytask is available on `PyPI <https://pypi.org/project/pytask>`_ and on `Anaconda.org
<https://anaconda.org/pytask/pytask>`_. Install the package with

.. code-block:: console

$ pip install pytask

# or

$ conda config --add channels conda-forge --add channels pytask
$ conda install pytask

Expand Down
8 changes: 5 additions & 3 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ Changes

This is a record of all past pytask releases and what went into them in reverse
chronological order. Releases follow `semantic versioning <https://semver.org/>`_ and
all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>`_.
all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
`Anaconda.org <https://anaconda.org/pytask/pytask>`_.


0.0.12 - 2020-xx-xx
0.0.12 - 2020-02-27
-------------------

- :gh:`55` implements miscellaneous fixes to improve error message, tests and coverage.
Expand All @@ -15,7 +16,8 @@ all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>
- :gh:`61` adds many changes to the documentation.
- :gh:`65` adds versioneer to pytask and :gh:`66` corrects the coverage reports which
were deflated due to the new files.
- :gh:`67` prepares pytask to be published on PyPI and :gh:`68` fixes the pipeline.
- :gh:`67` prepares pytask to be published on PyPI and :gh:`68` fixes the pipeline, and
:gh:`69` prepares releasing v0.0.12 and adds new shields.


0.0.11 - 2020-12-27
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@
package_dir={"": "src"},
platforms="any",
include_package_data=True,
zip_safe=False,
)