prepare_next_rel
This commit is contained in:
@ -3,7 +3,7 @@ name = "ormar"
|
||||
|
||||
[tool.poetry]
|
||||
name = "ormar"
|
||||
version = "0.10.24"
|
||||
version = "0.10.25"
|
||||
description = "A simple async ORM with fastapi in mind and pydantic validation."
|
||||
authors = ["Radosław Drążkiewicz <collerek@gmail.com>"]
|
||||
license = "MIT"
|
||||
@ -42,9 +42,9 @@ classifiers = [
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.6.2"
|
||||
databases = ">=0.3.2,!=0.5.0,!=0.5.1,!=0.5.2,!=0.5.3,<0.5.5"
|
||||
databases = ">=0.3.2,!=0.5.0,!=0.5.1,!=0.5.2,!=0.5.3,<=0.5.5"
|
||||
pydantic = ">=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<=1.9.1"
|
||||
SQLAlchemy = ">=1.3.18,<=1.4.29"
|
||||
SQLAlchemy = ">=1.3.18,<=1.4.31"
|
||||
asyncpg = { version = ">=0.24,<0.26", optional = true }
|
||||
psycopg2-binary = { version = "^2.9.1", optional = true }
|
||||
aiomysql = { version = ">=0.0.21,<0.0.23", optional = true }
|
||||
@ -83,7 +83,7 @@ pytest = "^6.2.5"
|
||||
pytest-cov = "^3.0.0"
|
||||
codecov = "^2.1.12"
|
||||
pytest-asyncio = "^0.16.0"
|
||||
fastapi = "^0.70.1"
|
||||
fastapi = ">=0.70.1,<0.75"
|
||||
flake8 = "^3.9.2"
|
||||
flake8-black = "^0.2.3"
|
||||
flake8-bugbear = "^22.1.11"
|
||||
@ -96,7 +96,7 @@ flake8-functions = "^0.0.6"
|
||||
flake8-expression-complexity = "^0.0.9"
|
||||
|
||||
# types
|
||||
mypy = "^0.910"
|
||||
mypy = "^0.931"
|
||||
types-ujson = "^4.2.0"
|
||||
types-PyMySQL = "^1.0.6"
|
||||
types-ipaddress = "^1.0.1"
|
||||
@ -111,7 +111,7 @@ types-dataclasses = { version = "^0.6.1", markers = "python_version < '3.7'" }
|
||||
|
||||
# Documantation
|
||||
mkdocs = "^1.2.3"
|
||||
mkdocs-material = "^8.1.2"
|
||||
mkdocs-material = ">=8.1.2,<8.3"
|
||||
mkdocs-material-extensions = "^1.0.3"
|
||||
pydoc-markdown = { version = "^4.5.0", markers = "python_version > '3.7'" }
|
||||
dataclasses = { version = ">=0.6.0,<0.8 || >0.8,<1.0.0" }
|
||||
|
||||
Reference in New Issue
Block a user