File tree 5 files changed +35
-26
lines changed
5 files changed +35
-26
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " pip"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " monthly"
7
+ - package-ecosystem : " github-actions"
8
+ directory : " /"
9
+ schedule :
10
+ interval : monthly
Original file line number Diff line number Diff line change 12
12
runs-on : " ubuntu-latest"
13
13
14
14
steps :
15
- - uses : " actions/checkout@v2 "
16
- - uses : " actions/setup-python@v1 "
15
+ - uses : " actions/checkout@v3 "
16
+ - uses : " actions/setup-python@v4 "
17
17
with :
18
18
python-version : 3.7
19
19
- name : " Install dependencies"
Original file line number Diff line number Diff line change 39
39
options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
40
40
41
41
steps :
42
- - uses : " actions/checkout@v2 "
43
- - uses : " actions/setup-python@v1 "
42
+ - uses : " actions/checkout@v3 "
43
+ - uses : " actions/setup-python@v4 "
44
44
with :
45
45
python-version : " ${{ matrix.python-version }}"
46
46
- name : " Install dependencies"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def __init__(
31
31
self ._database_url = DatabaseURL (database_url )
32
32
self ._options = options
33
33
self ._dialect = self ._get_dialect ()
34
- self ._pool = None
34
+ self ._pool : typing . Union [ aiopg . Pool , None ] = None
35
35
36
36
def _get_dialect (self ) -> Dialect :
37
37
dialect = PGDialect_psycopg2 (
Original file line number Diff line number Diff line change 1
1
-e .
2
2
3
3
# Async database drivers
4
- asyncmy
5
- aiomysql
6
- aiopg
7
- aiosqlite
8
- asyncpg
4
+ asyncmy == 0.2.5
5
+ aiomysql == 0.1.1
6
+ aiopg == 1.3.4
7
+ aiosqlite == 0.17.0
8
+ asyncpg == 0.26.0
9
9
10
10
# Sync database drivers for standard tooling around setup/teardown/migrations.
11
- psycopg2-binary
12
- pymysql
11
+ psycopg2-binary == 2.9.3
12
+ pymysql == 1.0.2
13
13
14
14
# Testing
15
- autoflake
16
- black
17
- codecov
18
- isort
19
- mypy
20
- pytest
21
- pytest-cov
22
- starlette
23
- requests
15
+ autoflake == 1.4
16
+ black == 22.6.0
17
+ isort == 5.10.1
18
+ mypy == 0.971
19
+ pytest == 7.1.2
20
+ pytest-cov == 3.0.0
21
+ starlette == 0.20.4
22
+ requests == 2.28.1
24
23
25
24
# Documentation
26
- mkdocs
27
- mkdocs-material
28
- mkautodoc
25
+ mkdocs == 1.3.1
26
+ mkdocs-material == 8.3.9
27
+ mkautodoc == 0.1.0
29
28
30
29
# Packaging
31
- twine
32
- wheel
30
+ twine == 4.0.1
31
+ wheel == 0.37.1
You can’t perform that action at this time.
0 commit comments