Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
Upgrade aiopg to 1.3.1 (#8)
Browse files Browse the repository at this point in the history
* Upgrade aiopg to 1.3.1

* Version bumped to 0.9.0

Co-authored-by: ns-circle-ci <[email protected]>
  • Loading branch information
jdrake and ns-circle-ci authored Sep 22, 2021
1 parent 003462c commit d046139
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 46 deletions.
90 changes: 49 additions & 41 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pynocular/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Lightweight ORM that lets you query your database using Pydantic models and asyncio"""

__version__ = "0.8.0"
__version__ = "0.9.0"

from pynocular.engines import DatabaseType, DBInfo
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pynocular"
version = "0.8.0"
version = "0.9.0"
description = "Lightweight ORM that lets you query your database using Pydantic models and asyncio"
authors = [
"RJ Santana <[email protected]>",
Expand All @@ -16,12 +16,11 @@ repository = "https://github.com/NarrativeScience/pynocular"
python = "^3.6.5"
aenum = "^3.1.0"
aiocontextvars = "^0.2.2"
aiopg = "^0.16.0"
aiopg = {extras = ["sa"], version = "^1.3.1"}
asyncpg = "^0.24.0"
asyncpgsa = "^0.25.0"
backoff = "^1.10.0"
backoff = "^1.11.1"
pydantic = "^1.6"
SQLAlchemy = ">=1.3.19<1.4"

[tool.poetry.dev-dependencies]
pre-commit = "^2.10.1"
Expand Down

0 comments on commit d046139

Please sign in to comment.