Skip to content

Commit 3ad16d5

Browse files
authored
Add conda-forge to README. (#11)
1 parent 75e53d2 commit 3ad16d5

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

CHANGES.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ Changes
44
This is a record of all past pytask-stata releases and what went into them in reverse
55
chronological order. Releases follow `semantic versioning <https://semver.org/>`_ and
66
all releases are available on `PyPI <https://pypi.org/project/pytask-stata>`_ and
7-
`Anaconda.org <https://anaconda.org/pytask/pytask-stata>`_.
7+
`Anaconda.org <https://anaconda.org/conda-forge/pytask-stata>`_.
8+
9+
10+
0.0.7 - 2021-xx-xx
11+
------------------
12+
13+
- :gh:`11` fixes the ``README.rst``.
814

915

1016
0.0.6 - 2021-03-05

README.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@
66
:alt: PyPI - Python Version
77
:target: https://pypi.org/project/pytask-stata
88

9-
.. image:: https://anaconda.org/pytask/pytask-stata/badges/version.svg
10-
:target: https://anaconda.org/pytask/pytask-stata
9+
.. image:: https://img.shields.io/conda/vn/conda-forge/pytask-stata.svg
10+
:target: https://anaconda.org/conda-forge/pytask-stata
1111

12-
.. image:: https://anaconda.org/pytask/pytask-stata/badges/platforms.svg
13-
:target: https://anaconda.org/pytask/pytask-stata
12+
.. image:: https://img.shields.io/conda/pn/conda-forge/pytask-stata.svg
13+
:target: https://anaconda.org/conda-forge/pytask-stata
1414

1515
.. image:: https://img.shields.io/pypi/l/pytask-stata
1616
:alt: PyPI - License
17+
:target: https://pypi.org/project/pytask-stata
1718

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

2122
.. image:: https://codecov.io/gh/pytask-dev/pytask-stata/branch/main/graph/badge.svg
2223
:target: https://codecov.io/gh/pytask-dev/pytask-stata
@@ -40,16 +41,15 @@ Installation
4041
------------
4142

4243
pytask-stata is available on `PyPI <https://pypi.org/project/pytask-stata>`_ and
43-
`Anaconda.org <https://anaconda.org/pytask/pytask-stata>`_. Install it with
44+
`Anaconda.org <https://anaconda.org/conda-forge/pytask-stata>`_. Install it with
4445

4546
.. code-block:: console
4647
4748
$ pip install pytask-stata
4849
4950
# or
5051
51-
$ conda config --add channels conda-forge --add channels pytask
52-
$ conda install pytask-stata
52+
$ conda install -c conda-forge pytask-stata
5353
5454
You also need to have Stata installed on your system and have the executable on your
5555
system's PATH. If you do not know how to do it, `here <https://superuser.com/a/284351>`_

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",
4141
],
42-
install_requires=["pytask >= 0.0.9"],
42+
install_requires=["click", "pytask >= 0.0.9"],
4343
platforms="any",
4444
packages=find_packages(where="src"),
4545
package_dir={"": "src"},

0 commit comments

Comments
 (0)