File tree Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 6
6
7
7
.. start-badges
8
8
9
+ .. image :: https://img.shields.io/pypi/v/pytask?color=blue
10
+ :alt: PyPI
11
+ :target: https://pypi.org/project/pytask
12
+
13
+ .. image :: https://img.shields.io/pypi/pyversions/pytask
14
+ :alt: PyPI - Python Version
15
+ :target: https://pypi.org/project/pytask
16
+
9
17
.. image :: https://anaconda.org/pytask/pytask/badges/version.svg
10
18
:target: https://anaconda.org/pytask/pytask
11
19
12
20
.. image :: https://anaconda.org/pytask/pytask/badges/platforms.svg
13
21
:target: https://anaconda.org/pytask/pytask
14
22
23
+ .. image :: https://img.shields.io/pypi/l/pytask
24
+ :alt: PyPI - License
25
+
15
26
.. image :: https://readthedocs.org/projects/pytask-dev/badge/?version=latest
16
27
:target: https://pytask-dev.readthedocs.io/en/latest
17
28
@@ -78,11 +89,15 @@ Installation
78
89
79
90
.. start-installation
80
91
81
- pytask is available on `Anaconda.org <https://anaconda .org/pytask /pytask >`_. Install the
82
- package with
92
+ pytask is available on `PyPI <https://pypi .org/project /pytask >`_ and on ` Anaconda.org
93
+ <https://anaconda.org/pytask/pytask> `_. Install the package with
83
94
84
95
.. code-block :: console
85
96
97
+ $ pip install pytask
98
+
99
+ # or
100
+
86
101
$ conda config --add channels conda-forge --add channels pytask
87
102
$ conda install pytask
88
103
Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ Changes
3
3
4
4
This is a record of all past pytask releases and what went into them in reverse
5
5
chronological order. Releases follow `semantic versioning <https://semver.org/ >`_ and
6
- all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask >`_.
6
+ all releases are available on `PyPI <https://pypi.org/project/pytask >`_ and
7
+ `Anaconda.org <https://anaconda.org/pytask/pytask >`_.
7
8
8
9
9
- 0.0.12 - 2020-xx-xx
10
+ 0.0.12 - 2020-02-27
10
11
-------------------
11
12
12
13
- :gh: `55 ` implements miscellaneous fixes to improve error message, tests and coverage.
@@ -15,7 +16,8 @@ all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>
15
16
- :gh: `61 ` adds many changes to the documentation.
16
17
- :gh: `65 ` adds versioneer to pytask and :gh: `66 ` corrects the coverage reports which
17
18
were deflated due to the new files.
18
- - :gh: `67 ` prepares pytask to be published on PyPI and :gh: `68 ` fixes the pipeline.
19
+ - :gh: `67 ` prepares pytask to be published on PyPI and :gh: `68 ` fixes the pipeline, and
20
+ :gh: `69 ` prepares releasing v0.0.12 and adds new shields.
19
21
20
22
21
23
0.0.11 - 2020-12-27
Original file line number Diff line number Diff line change 64
64
package_dir = {"" : "src" },
65
65
platforms = "any" ,
66
66
include_package_data = True ,
67
+ zip_safe = False ,
67
68
)
You can’t perform that action at this time.
0 commit comments