Skip to content

Commit 586c8a3

Browse files
committed
Update links readthedocs.org -> readthedocs.io
1 parent e20dad1 commit 586c8a3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Asynchronous interface for **[peewee](https://github.com/coleifer/peewee)**
55
ORM powered by **[asyncio](https://docs.python.org/3/library/asyncio.html)**.
66

77
[![Build Status](https://travis-ci.org/05bit/peewee-async.svg)](https://travis-ci.org/05bit/peewee-async) [![PyPi Version](https://img.shields.io/pypi/v/peewee-async.svg)](https://pypi.python.org/pypi/peewee-async)
8-
[![Documentation Status](https://readthedocs.org/projects/peewee-async/badge/?version=latest)](http://peewee-async.readthedocs.org/en/latest/?badge=latest)
8+
[![Documentation Status](https://readthedocs.io/projects/peewee-async/badge/?version=latest)](http://peewee-async.readthedocs.io/en/latest/?badge=latest)
99

1010
Overview
1111
--------
@@ -19,7 +19,7 @@ Overview
1919
* Transactions support is present, yet not heavily tested
2020

2121
The complete documentation:
22-
http://peewee-async.readthedocs.org
22+
http://peewee-async.readthedocs.io
2323

2424
Install
2525
-------
@@ -96,7 +96,7 @@ with objects.allow_sync():
9696
Documentation
9797
-------------
9898

99-
http://peewee-async.readthedocs.org
99+
http://peewee-async.readthedocs.io
100100

101101
Discuss
102102
-------

peewee_async.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def delete_object(obj, recursive=False, delete_nullable=False):
485485
486486
For details please check out `Model.delete_instance()`_ in peewee docs.
487487
488-
.. _Model.delete_instance(): http://peewee.readthedocs.org/en/latest/peewee/api.html#Model.delete_instance
488+
.. _Model.delete_instance(): http://peewee.readthedocs.io/en/latest/peewee/api.html#Model.delete_instance
489489
"""
490490
warnings.warn("delete_object() is deprecated, Manager.delete() "
491491
"should be used instead",
@@ -516,7 +516,7 @@ def update_object(obj, only=None):
516516
doesn't invoke ``save()`` method on model class. That is important to know if you
517517
overrided save method for your model.
518518
519-
.. _Model.save(): http://peewee.readthedocs.org/en/latest/peewee/api.html#Model.save
519+
.. _Model.save(): http://peewee.readthedocs.io/en/latest/peewee/api.html#Model.save
520520
"""
521521
# Here are private calls involved:
522522
#
@@ -1078,7 +1078,7 @@ class PostgresqlDatabase(AsyncPostgresqlMixin, peewee.PostgresqlDatabase):
10781078
database = PostgresqlDatabase('test')
10791079
10801080
See also:
1081-
http://peewee.readthedocs.org/en/latest/peewee/api.html#PostgresqlDatabase
1081+
http://peewee.readthedocs.io/en/latest/peewee/api.html#PostgresqlDatabase
10821082
"""
10831083
def init(self, database, **kwargs):
10841084
self.min_connections = 1
@@ -1098,7 +1098,7 @@ class PooledPostgresqlDatabase(AsyncPostgresqlMixin, peewee.PostgresqlDatabase):
10981098
database = PooledPostgresqlDatabase('test', max_connections=20)
10991099
11001100
See also:
1101-
http://peewee.readthedocs.org/en/latest/peewee/api.html#PostgresqlDatabase
1101+
http://peewee.readthedocs.io/en/latest/peewee/api.html#PostgresqlDatabase
11021102
"""
11031103
def init(self, database, **kwargs):
11041104
self.min_connections = kwargs.pop('min_connections', 1)
@@ -1185,7 +1185,7 @@ class MySQLDatabase(AsyncDatabase, peewee.MySQLDatabase):
11851185
database = MySQLDatabase('test')
11861186
11871187
See also:
1188-
http://peewee.readthedocs.org/en/latest/peewee/api.html#MySQLDatabase
1188+
http://peewee.readthedocs.io/en/latest/peewee/api.html#MySQLDatabase
11891189
"""
11901190
if aiomysql:
11911191
import pymysql
@@ -1230,7 +1230,7 @@ class PooledMySQLDatabase(MySQLDatabase):
12301230
database = MySQLDatabase('test', max_connections=10)
12311231
12321232
See also:
1233-
http://peewee.readthedocs.org/en/latest/peewee/api.html#MySQLDatabase
1233+
http://peewee.readthedocs.io/en/latest/peewee/api.html#MySQLDatabase
12341234
"""
12351235
def init(self, database, **kwargs):
12361236
self.min_connections = kwargs.pop('min_connections', 1)

peewee_asyncext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class PostgresqlExtDatabase(AsyncPostgresqlMixin, ext.PostgresqlExtDatabase):
2929
database = PostgresqlExtDatabase('test', register_hstore=False)
3030
3131
See also:
32-
https://peewee.readthedocs.org/en/latest/peewee/playhouse.html#PostgresqlExtDatabase
32+
https://peewee.readthedocs.io/en/latest/peewee/playhouse.html#PostgresqlExtDatabase
3333
"""
3434
def init(self, database, **kwargs):
3535
self.min_connections = 1
@@ -54,7 +54,7 @@ class PooledPostgresqlExtDatabase(AsyncPostgresqlMixin, ext.PostgresqlExtDatabas
5454
max_connections=20)
5555
5656
See also:
57-
https://peewee.readthedocs.org/en/latest/peewee/playhouse.html#PostgresqlExtDatabase
57+
https://peewee.readthedocs.io/en/latest/peewee/playhouse.html#PostgresqlExtDatabase
5858
"""
5959
def init(self, database, **kwargs):
6060
self.min_connections = kwargs.pop('min_connections', 1)

0 commit comments

Comments
 (0)