-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* modification in tests * removing obsolete examples * removing old style (yield from) in docs * rename psycopg2 to psycopg2-binary in docs * added note in docs about going to python3.5.2+ * interim fix due to issues #533 * add docs example and style * add isort and deleted obsolete non-asynchronous cursor iteration * fix async iter for python 3.5 * add readthedocs.yml * travis allow failures python:nightly * travis allow failures python:nightly * travis allow failures python:nightly * travis allow failures python:nightly * travis remove docker cache * fix code style yml * refactor * fix docs * normalized version c to rc pep440 * edit docs * refactor sa connection * fix travis * fix travis * fix travis * fix test * Update aiopg/cursor.py Co-Authored-By: Boryslav Larin <brabadu@gmail.com> * Update docs/one_cursor.rst Co-Authored-By: Boryslav Larin <brabadu@gmail.com> * Update .readthedocs.yml Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * Update CONTRIBUTING.rst Co-Authored-By: Sviatoslav Sydorenko <wk@sydorenko.org.ua> * remove mogrify * add changes * python 3.8 and update requirements * python 3.8 and update requirements * python 3.8 and update requirements
- Loading branch information
Showing
64 changed files
with
1,416 additions
and
868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[settings] | ||
line_length=79 | ||
multi_line_output=3 | ||
include_trailing_comma=True | ||
indent=' ' | ||
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
|
||
build: | ||
image: latest | ||
|
||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: requirements.txt | ||
- method: pip | ||
path: . | ||
system_packages: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
* Alexander <chersanya@gmail.com> | ||
* Eugene Krevenets <hyzhak@ya.ru> | ||
* Fantix King | ||
* Lena Kryvonos | ||
* Low Kian Seong <kianseong@gmail.com> | ||
* Marco Paolini | ||
* Michal Kuffa | ||
* Nikolay Novik <is.infinity@yahoo.com> | ||
* Petr Viktorin <encukou@gmail.com> | ||
* R\. David Murray <rdmurray@bitdance.com> | ||
* Ryan Hodge | ||
* Theron Luhn <theron@luhn.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
Maintainers | ||
----------- | ||
|
||
The list of *aiopg* maintainers. | ||
|
||
Andrew Svetlov <andrew.svetlov@gmail.com> | ||
Alexey Popravka <alexey.popravka@horsedevel.com> | ||
Alexey Firsov <virmir49@gmail.com> | ||
* Andrew Svetlov <andrew.svetlov@gmail.com> | ||
* Alexey Firsov <virmir49@gmail.com> | ||
* Alexey Popravka <alexey.popravka@horsedevel.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
include LICENSE.txt | ||
include CHANGES.txt | ||
include README.rst | ||
include MAINTAINERS.txt | ||
graft aiopg | ||
global-exclude *.pyc | ||
exclude tests/** |
Oops, something went wrong.