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
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ Changes
This is a record of all past pytask-r releases and what went into them in reverse
chronological order. Releases follow `semantic versioning <https://semver.org/>`_ and
all releases are available on `PyPI <https://pypi.org/project/pytask-r>`_ and
`Anaconda.org <https://anaconda.org/pytask/pytask-r>`_.
`Anaconda.org <https://anaconda.org/conda-forge/pytask-r>`_.


0.0.9 - 2021-03-05
------------------

- :gh:`13` fixes the version number in the release.


0.0.8 - 2021-03-03
Expand Down
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@
:alt: PyPI - Python Version
:target: https://pypi.org/project/pytask-r

.. image:: https://anaconda.org/pytask/pytask-r/badges/version.svg
:target: https://anaconda.org/pytask/pytask-r
.. image:: https://img.shields.io/conda/vn/conda-forge/pytask-r.svg
:target: https://anaconda.org/conda-forge/pytask-r

.. image:: https://anaconda.org/pytask/pytask-r/badges/platforms.svg
:target: https://anaconda.org/pytask/pytask-r
.. image:: https://img.shields.io/conda/pn/conda-forge/pytask-r.svg
:target: https://anaconda.org/conda-forge/pytask-r

.. image:: https://img.shields.io/pypi/l/pytask-r
:alt: PyPI - License
:target: https://pypi.org/project/pytask-r

.. image:: https://github.com/pytask-dev/pytask-r/workflows/Continuous%20Integration%20Workflow/badge.svg?branch=main
:target: https://github.com/pytask-dev/pytask-r/actions?query=branch%3Amain
.. image:: https://img.shields.io/github/workflow/status/pytask-dev/pytask-r/Continuous%20Integration%20Workflow/main
:target: https://github.com/pytask-dev/pytask-r/actions?query=branch%3Amain

.. image:: https://codecov.io/gh/pytask-dev/pytask-r/branch/main/graph/badge.svg
:target: https://codecov.io/gh/pytask-dev/pytask-r
Expand All @@ -40,16 +41,15 @@ Installation
------------

pytask-r is available on `PyPI <https://pypi.org/project/pytask-r>`_ and `Anaconda.org
<https://anaconda.org/pytask/pytask-r>`_. Install it with
<https://anaconda.org/conda-forge/pytask-r>`_. Install it with

.. code-block:: console

$ pip install pytask-r

# or

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

You also need to have R installed and ``Rscript`` on your command line. Test it by
typing the following on the command line
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
setup(
name="pytask-r",
version=versioneer.get_version(),
cmd_class=versioneer.get_cmdclass(),
cmdclass=versioneer.get_cmdclass(),
description="Run R scripts with pytask.",
long_description=README,
long_description_content_type="text/x-rst",
Expand All @@ -40,11 +40,11 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: R",
],
install_requires=["pytask >= 0.0.9"],
install_requires=["click", "pytask >= 0.0.9"],
platforms="any",
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={"pytask": ["pytask_r = pytask_r.plugin"]},
include_package_data=True,
zip_false=False,
zip_safe=False,
)
2 changes: 0 additions & 2 deletions src/pytask_r/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
__version__ = "0.0.6"

from ._version import get_versions

__version__ = get_versions()["version"]
Expand Down