You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,16 @@
1
1
# How to contribute to `pip-review`
2
2
3
-
First rule: please **do** contribute!
3
+
Please **do** contribute! In fact, please take over! See https://github.com/jgonggrijp/pip-review/issues/76.
4
+
5
+
I (@jgonggrijp) will not just abondon `pip-review`, but I am not using it anymore myself and I cannot dedicate any time to actively maintaining it, other than accepting pull requests and maybe issueing a new release once in a while. So if you see a way to improve `pip-review`, whether by fixing a bug or by adding a feature, please go ahead and submit a pull request.
4
6
5
-
I (@jgonggrijp) want to keep `pip-review` in the air, but I cannot dedicate much time to maintaining it. So if you see a way to improve `pip-review`, whether by fixing a bug or by adding a feature, please go ahead and submit a pull request.
6
7
7
8
## Suggestions
8
9
9
10
Any kind of contribution is welcome; nothing is "off limits". However, for those who would like some guidance:
10
11
11
12
- Look for issues with the [help wanted](https://github.com/jgonggrijp/pip-review/labels/help%20wanted), [question](https://github.com/jgonggrijp/pip-review/labels/question) or [poll](https://github.com/jgonggrijp/pip-review/labels/poll) label. In the latter case, if you have an opinion, vote by adding an emoticon of your choice to the opening post. Feel free to explain your vote in a response or to thumbs-up another response that explains your opinion.
12
-
- Issues that are associated with a milestone are ordered by relative priority. To see the priority order, click on the milestone. Needless to say, the highest priority issue is at the top.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+
8
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9
+
10
+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11
+
12
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Copy file name to clipboardExpand all lines: README.rst
+29-3Lines changed: 29 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,9 @@
5
5
pip-review
6
6
==========
7
7
8
-
``pip-review`` is a convenience wrapper around ``pip``. It can list available updates by deferring to ``pip list --outdated``. It can also automatically or interactively install available updates for you by deferring to ``pip install``.
8
+
*Looking for a new maintainer! See https://github.com/jgonggrijp/pip-review/issues/76.*
9
+
10
+
``pip-review`` is a convenience wrapper around ``pip``. It can list available updates by deferring to ``pip list --outdated``. It can also automatically or interactively install available updates for you by deferring to ``pip install``.
9
11
10
12
Example, report-only:
11
13
@@ -39,10 +41,34 @@ Example, run interactively, ask to upgrade for each package:
39
41
40
42
Run ``pip-review -h`` for a complete overview of the options.
41
43
42
-
Since version 0.5, you can also invoke pip-review as ``python -m pip_review``.
44
+
Note: If you want to pin specific packages to prevent them from automatically
45
+
being upgraded, you can use a constraint file (similar to ``requirements.txt``):
46
+
47
+
.. code:: console
48
+
49
+
$ export PIP_CONSTRAINT="${HOME}/constraints.txt
50
+
$ cat $PIP_CONSTRAINT
51
+
pyarrow==0.14.1
52
+
pandas<0.24.0
53
+
54
+
$ pip-review --auto
55
+
...
56
+
57
+
Set this variable in ``.bashrc`` or ``.zshenv`` to make it persistent.
58
+
Alternatively, this option can be specified in ``pip.conf``, e.g.:
59
+
60
+
.. code:: console
61
+
62
+
$ cat ~/.config/pip.conf
63
+
[global]
64
+
constraint = /home/username/constraints.txt
65
+
66
+
Since version 0.5, you can also invoke pip-review as ``python -m pip_review``. This can be useful if you are using multiple versions of Python next to each other.
43
67
44
68
Before version 1.0, ``pip-review`` had its own logic for finding package updates instead of relying on ``pip list --outdated``.
45
69
70
+
Like ``pip``, ``pip-review`` updates **all** packages, including ``pip`` and ``pip-review``.
71
+
46
72
47
73
Installation
48
74
============
@@ -79,7 +105,7 @@ involves downloading packages, etc. So please be patient.
79
105
Origins
80
106
=======
81
107
82
-
``pip-review`` was originally part of pip-tools_ but
108
+
``pip-review`` was originally part of pip-tools_ but
83
109
has been discontinued_ as such. See `Pin Your Packages`_ by Vincent
84
110
Driessen for the original introduction. Since there are still use cases, the
0 commit comments