This repository has been archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade aenum to ^3.1.0 * Version bumped to 0.7.0 Co-authored-by: ns-circle-ci <[email protected]>
- Loading branch information
1 parent
e9457e9
commit f9ca104
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,5 +1,5 @@ | ||
"""Lightweight ORM that lets you query your database using Pydantic models and asyncio""" | ||
|
||
__version__ = "0.6.0" | ||
__version__ = "0.7.0" | ||
|
||
from pynocular.engines import DatabaseType, DBInfo |
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,6 @@ | ||
[tool.poetry] | ||
name = "pynocular" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
description = "Lightweight ORM that lets you query your database using Pydantic models and asyncio" | ||
authors = [ | ||
"RJ Santana <[email protected]>", | ||
|
@@ -14,7 +14,7 @@ repository = "https://github.com/NarrativeScience/pynocular" | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.6.5" | ||
aenum = "^2.1" | ||
aenum = "^3.1.0" | ||
aiocontextvars = "^0.2.2" | ||
aiopg = "^0.16.0" | ||
asyncpg = "^0.15.0" | ||
|