bootgraph 1.5.0.dev23455__tar.gz → 1.5.0.dev23477__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bootgraph
3
- Version: 1.5.0.dev23455
3
+ Version: 1.5.0.dev23477
4
4
  Summary: A Python library for integrating SQLModel and Strawberry, providing a seamless GraphQL integration with FastAPI and advanced features for database interactions.
5
5
  Home-page: https://github.com/MDoreto/graphemy
6
6
  License: MIT
@@ -2,7 +2,6 @@ from typing import Type
2
2
 
3
3
  from strawberry.dataloader import DataLoader
4
4
 
5
- # from . import Graphemy
6
5
  from .schemas.models import DateFilter
7
6
 
8
7
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "bootgraph"
3
- version = "v1.5.0.dev23455"
3
+ version = "v1.5.0.dev23477"
4
4
  description = "A Python library for integrating SQLModel and Strawberry, providing a seamless GraphQL integration with FastAPI and advanced features for database interactions."
5
5
  authors = ["Matheus Doreto <matheusdoreto.md@gmail.com>", "Pavel Mulin <mulin.pasha@gmail.com>"]
6
6
  readme = "README.md"
@@ -73,7 +73,7 @@ lint = "black . && isort ."
73
73
  docs = "mkdocs serve"
74
74
  pre_publish = "poetry export --output requirements-docs.txt --with doc --without-hashes "
75
75
  pre_test = "task lint"
76
- test = "pytest -s -x --cov=graphemy -vv -W ignore::DeprecationWarning"
76
+ test = "pytest -s -x --cov=bootgraph -vv -W ignore::DeprecationWarning"
77
77
  post_test = "coverage html"
78
78
  publish = "poetry publish --build"
79
79