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.
* Add a test runner for 3.9 as well as 3.6 * Add a test runner for 3.9 as well as 3.6 * Version bumped to 0.12.0 * matrix * add 3.7 and 3.8 test runs Co-authored-by: ns-circle-ci <[email protected]> Co-authored-by: Jonathan Drake <[email protected]>
- Loading branch information
1 parent
8d7643f
commit c556398
Showing
9 changed files
with
108 additions
and
7 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
docker: | ||
- image: cimg/python:3.7 | ||
environment: | ||
EXISTING_DB_NAME: circle_test | ||
TEST_DB_NAME: test_db | ||
DB_USER_NAME: postgres | ||
DB_USER_PASSWORD: $CIRCLE_SHA1 | ||
- image: circleci/postgres:12-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: $CIRCLE_SHA1 | ||
resource_class: medium |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
docker: | ||
- image: cimg/python:3.8 | ||
environment: | ||
EXISTING_DB_NAME: circle_test | ||
TEST_DB_NAME: test_db | ||
DB_USER_NAME: postgres | ||
DB_USER_PASSWORD: $CIRCLE_SHA1 | ||
- image: circleci/postgres:12-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: $CIRCLE_SHA1 | ||
resource_class: medium |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
docker: | ||
- image: cimg/python:3.9 | ||
environment: | ||
EXISTING_DB_NAME: circle_test | ||
TEST_DB_NAME: test_db | ||
DB_USER_NAME: postgres | ||
DB_USER_PASSWORD: $CIRCLE_SHA1 | ||
- image: circleci/postgres:12-alpine-ram | ||
environment: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: $CIRCLE_SHA1 | ||
resource_class: medium |
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
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 |
---|---|---|
|
@@ -5,3 +5,6 @@ jobs: | |
branches: | ||
ignore: | ||
- main | ||
matrix: | ||
parameters: | ||
python_version: ["3_6", "3_7", "3_8", "3_9"] |
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.11.0" | ||
__version__ = "0.12.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.11.0" | ||
version = "0.12.0" | ||
description = "Lightweight ORM that lets you query your database using Pydantic models and asyncio" | ||
authors = [ | ||
"RJ Santana <[email protected]>", | ||
|