Skip to content

Commit

Permalink
Update all pypi.python.org URLs to pypi.org
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne authored and rbarrois committed Apr 20, 2018
1 parent 7fdd833 commit 12c0892
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.rst
Expand Up @@ -9,15 +9,15 @@ factory_boy
:alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/factory_boy.svg
:target: https://pypi.python.org/pypi/factory_boy/
:target: https://pypi.org/project/factory_boy/
:alt: Supported Python versions

.. image:: https://img.shields.io/pypi/wheel/factory_boy.svg
:target: https://pypi.python.org/pypi/factory_boy/
:target: https://pypi.org/project/factory_boy/
:alt: Wheel status

.. image:: https://img.shields.io/pypi/l/factory_boy.svg
:target: https://pypi.python.org/pypi/factory_boy/
:target: https://pypi.org/project/factory_boy/
:alt: License

factory_boy is a fixtures replacement based on thoughtbot's `factory_bot <https://github.com/thoughtbot/factory_bot>`_.
Expand Down Expand Up @@ -77,7 +77,7 @@ Links

* Documentation: https://factoryboy.readthedocs.io/
* Repository: https://github.com/FactoryBoy/factory_boy
* Package: https://pypi.python.org/pypi/factory_boy/
* Package: https://pypi.org/project/factory_boy/
* Mailing-list: `factoryboy@googlegroups.com <mailto:factoryboy@googlegroups.com>`_ | https://groups.google.com/forum/#!forum/factoryboy

factory_boy supports Python 2.7, 3.4 to 3.6, as well as PyPy 2.7 and 5.8.
Expand All @@ -86,7 +86,7 @@ factory_boy supports Python 2.7, 3.4 to 3.6, as well as PyPy 2.7 and 5.8.
Download
--------

PyPI: https://pypi.python.org/pypi/factory_boy/
PyPI: https://pypi.org/project/factory_boy/

.. code-block:: sh
Expand Down Expand Up @@ -187,7 +187,7 @@ Realistic, random values
""""""""""""""""""""""""

Demos look better with random yet realistic values; and those realistic values can also help discover bugs.
For this, factory_boy relies on the excellent `faker <https://pypi.python.org/pypi/faker>`_ library:
For this, factory_boy relies on the excellent `faker <https://pypi.org/project/Faker/>`_ library:

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Expand Up @@ -131,7 +131,7 @@ corner cases and weird behaviourrs.
*New:*

- Add :attr:`factory.FactoryOptions.rename` to help handle conflicting names (:issue:`206`)
- Add support for random-yet-realistic values through `fake-factory <https://pypi.python.org/pypi/fake-factory>`_,
- Add support for random-yet-realistic values through `fake-factory <https://pypi.org/project/fake-factory/>`_,
through the :class:`factory.Faker` class.
- :class:`factory.Iterator` no longer begins iteration of its argument at import time,
thus allowing to pass in a lazy iterator such as a Django queryset
Expand Down
2 changes: 1 addition & 1 deletion docs/reference.rst
Expand Up @@ -675,7 +675,7 @@ Faker
In order to easily define realistic-looking factories,
use the :class:`Faker` attribute declaration.

This is a wrapper around `faker <https://pypi.python.org/pypi/faker>`_;
This is a wrapper around `faker <https://pypi.org/project/Faker/>`_;
its argument is the name of a ``faker`` provider:

.. code-block:: python
Expand Down

0 comments on commit 12c0892

Please sign in to comment.