11[tool .poetry ]
22name = " gino"
3- version = " 1.1 .0-beta .1"
3+ version = " 2.0 .0-alpha .1"
44description = " GINO Is Not ORM - a Python asyncio ORM on SQLAlchemy core."
55license = " BSD-3-Clause"
66authors = [" Fantix King <fantix.king@gmail.com>" ]
@@ -16,27 +16,25 @@ classifiers = [
1616 " License :: OSI Approved :: BSD License" ,
1717 " Natural Language :: English" ,
1818 " Programming Language :: Python :: 3" ,
19- " Programming Language :: Python :: 3.5" ,
20- " Programming Language :: Python :: 3.6" ,
2119 " Programming Language :: Python :: 3.7" ,
2220 " Programming Language :: Python :: 3.8" ,
2321]
2422
2523[tool .poetry .dependencies ]
26- python = " ^3.5"
27- asyncpg = " >=0.18,<1.0"
28- SQLAlchemy = " >=1.3,<1.4"
24+ python = " ^3.7"
25+ asyncpg = " ^0.21.0,<1.0"
26+ sqlalchemy = {path = " ../sqlalchemy" }
27+ # SQLAlchemy = {git = "https://github.com/sqlalchemy/sqlalchemy.git"}
2928
3029# compatibility
31- contextvars = { version = " ^2.4" , python = " <3.7" }
32- importlib_metadata = { version = " ^1.3.0" , python = " <3.8" }
30+ importlib_metadata = {version = " ^1.7.0" , python = " <3.8" }
3331
3432# extensions
35- gino-starlette = { version = " ^0.1.1" , optional = true , python = " ^3.6 " }
36- gino-aiohttp = { version = " ^0.1.0" , optional = true , python = " ^3.5.3 " }
37- gino-tornado = { version = " ^0.1.0" , optional = true , python = " ^3.5.2 " }
38- gino-sanic = { version = " ^0.1.0" , optional = true , python = " ^3.6 " }
39- gino-quart = { version = " ^0.1.0" , optional = true , python = " ^3.7 " }
33+ gino-starlette = { version = " ^0.1.1" , optional = true }
34+ gino-aiohttp = { version = " ^0.1.0" , optional = true }
35+ gino-tornado = { version = " ^0.1.0" , optional = true }
36+ gino-sanic = { version = " ^0.1.0" , optional = true }
37+ gino-quart = { version = " ^0.1.0" , optional = true }
4038
4139[tool .poetry .extras ]
4240starlette = [" gino-starlette" ]
@@ -47,27 +45,22 @@ quart = ["gino-quart"]
4745
4846[tool .poetry .dev-dependencies ]
4947psycopg2-binary = " ^2.8.5"
50- async_generator = " ^1.10"
51- click = " ^7.1"
48+ click = " ^7.1.2"
5249
5350# tests
54- pytest = " ^5.4 .1"
55- pytest-asyncio = " ^0.10 .0"
56- pytest-mock = " ^3.0 .0"
57- pytest-cov = " ^2.8 .1"
58- black = { version = " ^19.10b0" , python = " >=3.6 " }
59- mypy = " ^0.770 "
51+ pytest = " ^6.0 .1"
52+ pytest-asyncio = " ^0.14 .0"
53+ pytest-mock = " ^3.3 .0"
54+ pytest-cov = " ^2.10 .1"
55+ black = " ^19.10b0"
56+ mypy = " ^0.782 "
6057
6158# docs
62- sphinx = " ^3.0.3 "
63- sphinx-rtd-theme = " ^0.4.3 "
59+ sphinx = " ^3.2.1 "
60+ sphinx-rtd-theme = " ^0.5.0 "
6461sphinxcontrib-apidoc = " ^0.3.0"
6562sphinx-autobuild = " ^0.7.1"
66- sphinx-intl = {extras = [" transifex" ], version = " ^2.0.1" }
67-
68- [tool .poetry .plugins ."sqlalchemy .dialects" ]
69- "postgresql.asyncpg" = " gino.dialects.asyncpg:AsyncpgDialect"
70- "asyncpg" = " gino.dialects.asyncpg:AsyncpgDialect"
63+ sphinx-intl = {version = " ^2.0.1" , extras = [" transifex" ]}
7164
7265[build-system ]
7366requires = [" poetry>=1.0" ]
0 commit comments