summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2018-11-06 21:10:05 -0800
committerGitHub <noreply@github.com>2018-11-06 21:10:05 -0800
commit68e39a9291b70a5cb8de473f69f9bfd401c534e3 (patch)
tree898510b07dbcb598682697f0a2420d06b63e8788
parentaa503f468a9ec89518fd252ea03affc273c4c19a (diff)
parent7fb171f65d30ca2ef98e1ee7237b04bd59c1cc70 (diff)
downloadnatsort-68e39a9291b70a5cb8de473f69f9bfd401c534e3.tar.gz
Merge pull request #74 from jdufresne/pypi
Update all pypi.python.org URLs to pypi.org
-rw-r--r--docs/source/howitworks.rst2
-rw-r--r--docs/source/locale_issues.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/howitworks.rst b/docs/source/howitworks.rst
index 45c5e61..05f8cdf 100644
--- a/docs/source/howitworks.rst
+++ b/docs/source/howitworks.rst
@@ -938,7 +938,7 @@ So, how to deal with this situation? There are two ways to do so.
turn on *LOWERCASEFIRST* and *GROUPLETTERS*.
#. Use an alternate library if installed. `ICU <http://site.icu-project.org/>`_
is a great and powerful library that has a pretty decent Python port
- called (you guessed it) `PyICU <https://pypi.python.org/pypi/PyICU/>`_.
+ called (you guessed it) `PyICU <https://pypi.org/project/PyICU/>`_.
If a user has this library installed on their computer, :mod:`natsort`
chooses to use that instead of :mod:`locale`. With a little bit of
planning, one can write a set of wrapper functions that call
diff --git a/docs/source/locale_issues.rst b/docs/source/locale_issues.rst
index c78e4c0..953f492 100644
--- a/docs/source/locale_issues.rst
+++ b/docs/source/locale_issues.rst
@@ -39,7 +39,7 @@ independent of the global state, but the
function must access this global state to work; therefore, if you change
locale and use ``ns.LOCALE`` then you should discard the old key.
-.. note:: If you use `PyICU <https://pypi.python.org/pypi/PyICU>`_ then you
+.. note:: If you use `PyICU <https://pypi.org/project/PyICU/>`_ then you
may be able to reuse keys after changing locale.
The `locale <https://docs.python.org/3.5/library/locale.html>`_ Module From the StdLib Has Issues