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: docs/installation.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ Installation
4
4
.. contents:: Contents
5
5
:local:
6
6
7
-
The easiest (and best) way to install jira-python is through `pip <http://www.pip-installer.org/>`_::
7
+
The easiest (and best) way to install jira-python is through `pip <https://pip.pypa.io/>`_::
8
8
9
9
$ pip install jira
10
10
11
11
This will handle the client itself as well as the requirements.
12
12
13
-
If you're going to run the client standalone, we strongly recommend using a `virtualenv <http://www.virtualenv.org/>`_,
13
+
If you're going to run the client standalone, we strongly recommend using a `virtualenv <https://virtualenv.pypa.io/>`_,
14
14
which pip can also set up for you::
15
15
16
16
$ pip -E jira_python install jira
@@ -30,10 +30,10 @@ Dependencies
30
30
31
31
Python 3.5+ is required.
32
32
33
-
- :py:mod:`requests` - `python-requests <http://docs.python-requests.org>`_ library handles the HTTP business. Usually, the latest version available at time of release is the minimum version required; at this writing, that version is 1.2.0, but any version >= 1.0.0 should work.
33
+
- :py:mod:`requests` - `python-requests <https://pypi.org/project/requests/>`_ library handles the HTTP business. Usually, the latest version available at time of release is the minimum version required; at this writing, that version is 1.2.0, but any version >= 1.0.0 should work.
34
34
- :py:mod:`requests-oauthlib` - Used to implement OAuth. The latest version as of this writing is 0.3.3.
35
35
- :py:mod:`requests-kerberos` - Used to implement Kerberos.
36
-
- :py:mod:`ipython` - The `IPython enhanced Python interpreter <http://ipython.org>`_ provides the fancy chrome used by :ref:`jirashell-label`.
36
+
- :py:mod:`ipython` - The `IPython enhanced Python interpreter <https://ipython.org>`_ provides the fancy chrome used by :ref:`jirashell-label`.
37
37
- :py:mod:`filemagic` - This library handles content-type autodetection for things like image uploads. This will only work on a system that provides libmagic; Mac and Unix will almost always have it preinstalled, but Windows users will have to use Cygwin or compile it natively. If your system doesn't have libmagic, you'll have to manually specify the ``contentType`` parameter on methods that take an image object, such as project and user avatar creation.
38
38
39
39
Installing through :py:mod:`pip` takes care of these dependencies for you.
0 commit comments