From 4e267ece20679203dd9ade8894cd0bdef2c49640 Mon Sep 17 00:00:00 2001 From: aflah02 <72096386+aflah02@users.noreply.github.com> Date: Tue, 15 Dec 2020 10:08:45 +0530 Subject: [PATCH 1/5] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6d1d890c54093..12ebd57c708f9 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ The source code is currently hosted on GitHub at: https://github.com/pandas-dev/pandas Binary installers for the latest released version are available at the [Python -package index](https://pypi.org/project/pandas) and on conda. +package index](https://pypi.org/project/pandas) and on [Conda](https://docs.conda.io/en/latest/). ```sh # conda @@ -107,7 +107,7 @@ pip install pandas See the [full installation instructions](https://pandas.pydata.org/pandas-docs/stable/install.html#dependencies) for minimum supported versions of required, recommended and optional dependencies. ## Installation from sources -To install pandas from source you need Cython in addition to the normal +To install pandas from source you need [Cython](https://cython.org/) in addition to the normal dependencies above. Cython can be installed from pypi: ```sh @@ -145,7 +145,7 @@ See the full instructions for [installing from source](https://pandas.pydata.org The official documentation is hosted on PyData.org: https://pandas.pydata.org/pandas-docs/stable ## Background -Work on ``pandas`` started at AQR (a quantitative hedge fund) in 2008 and +Work on ``pandas`` started at [AQR](https://www.aqr.com/) (a quantitative hedge fund) in 2008 and has been under active development since then. ## Getting Help From 43c98fd963d49922df0c2aa88b492c89a3e572e7 Mon Sep 17 00:00:00 2001 From: aflah02 <72096386+aflah02@users.noreply.github.com> Date: Tue, 15 Dec 2020 10:12:54 +0530 Subject: [PATCH 2/5] Update README.md Added Links --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12ebd57c708f9..2f9119d640eb0 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ The source code is currently hosted on GitHub at: https://github.com/pandas-dev/pandas Binary installers for the latest released version are available at the [Python -package index](https://pypi.org/project/pandas) and on [Conda](https://docs.conda.io/en/latest/). +Package Index (PyPI)](https://pypi.org/project/pandas) and on [Conda](https://docs.conda.io/en/latest/). ```sh # conda From 89e6ccaab8183b3400851f73ec3163f66e193932 Mon Sep 17 00:00:00 2001 From: aflah02 <72096386+aflah02@users.noreply.github.com> Date: Tue, 15 Dec 2020 10:14:51 +0530 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f9119d640eb0..56250a8228feb 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ See the [full installation instructions](https://pandas.pydata.org/pandas-docs/s ## Installation from sources To install pandas from source you need [Cython](https://cython.org/) in addition to the normal -dependencies above. Cython can be installed from pypi: +dependencies above. Cython can be installed from PyPI: ```sh pip install cython From 191b0646ea2ea87292cd16b5d8cbaefa2cb1e4af Mon Sep 17 00:00:00 2001 From: aflah02 <72096386+aflah02@users.noreply.github.com> Date: Tue, 15 Dec 2020 10:18:54 +0530 Subject: [PATCH 4/5] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 56250a8228feb..e828bdc8321b4 100644 --- a/README.md +++ b/README.md @@ -100,9 +100,9 @@ pip install pandas ``` ## Dependencies -- [NumPy](https://www.numpy.org) -- [python-dateutil](https://labix.org/python-dateutil) -- [pytz](https://pythonhosted.org/pytz) +- [NumPy - Adds support for large, multi-dimensional arrays, matrices and high-level mathematical functions to operate on these arrays](https://www.numpy.org) +- [python-dateutil - Provides powerful extensions to the standard datetime module, available in Python 2.3+](https://labix.org/python-dateutil) +- [pytz - Brings the Olson tz database into Python which allows accurate and cross platform timezone calculations using Python 2.4 or higher](https://pythonhosted.org/pytz) See the [full installation instructions](https://pandas.pydata.org/pandas-docs/stable/install.html#dependencies) for minimum supported versions of required, recommended and optional dependencies. From 2326fe26d8f682aaa9789ababea05cf129e7422d Mon Sep 17 00:00:00 2001 From: aflah02 <72096386+aflah02@users.noreply.github.com> Date: Wed, 16 Dec 2020 07:54:26 +0530 Subject: [PATCH 5/5] Update README.md Removed the Python Versions beyond which they are available from the documentation for python-dateutil and pytz as advised --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e828bdc8321b4..f238e219bd3d8 100644 --- a/README.md +++ b/README.md @@ -101,8 +101,8 @@ pip install pandas ## Dependencies - [NumPy - Adds support for large, multi-dimensional arrays, matrices and high-level mathematical functions to operate on these arrays](https://www.numpy.org) -- [python-dateutil - Provides powerful extensions to the standard datetime module, available in Python 2.3+](https://labix.org/python-dateutil) -- [pytz - Brings the Olson tz database into Python which allows accurate and cross platform timezone calculations using Python 2.4 or higher](https://pythonhosted.org/pytz) +- [python-dateutil - Provides powerful extensions to the standard datetime module](https://labix.org/python-dateutil) +- [pytz - Brings the Olson tz database into Python which allows accurate and cross platform timezone calculations](https://pythonhosted.org/pytz) See the [full installation instructions](https://pandas.pydata.org/pandas-docs/stable/install.html#dependencies) for minimum supported versions of required, recommended and optional dependencies.