0.7.5 update sqlalchemy module to require flask_sqlalchemy
This commit is contained in:
parent
c27630c3d6
commit
556019e0bd
4 changed files with 12 additions and 5 deletions
|
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.7.5
|
||||||
|
|
||||||
|
+ Delay release of `FakeModule` to 0.9.0
|
||||||
|
+ Update dependencies: `.sqlalchemy` now requires `flask_sqlalchemy` regardless of use of Flask
|
||||||
|
|
||||||
## 0.7.4
|
## 0.7.4
|
||||||
|
|
||||||
+ Delay release of `@glue()`
|
+ Delay release of `@glue()`
|
||||||
|
|
@ -9,7 +14,7 @@
|
||||||
## 0.7.3
|
## 0.7.3
|
||||||
|
|
||||||
+ Fixed some broken imports in `.sqlalchemy`
|
+ Fixed some broken imports in `.sqlalchemy`
|
||||||
+ Stage `@glue()` for release in 0.9.0
|
+ Stage `@glue()` for release in ~~0.8.0~~ 0.9.0
|
||||||
+ Add docs to `.sqlalchemy`
|
+ Add docs to `.sqlalchemy`
|
||||||
|
|
||||||
## 0.7.2
|
## 0.7.2
|
||||||
|
|
|
||||||
|
|
@ -38,14 +38,16 @@ Documentation = "https://suou.readthedocs.io"
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
# the below are all dev dependencies (and probably already installed)
|
# the below are all dev dependencies (and probably already installed)
|
||||||
sqlalchemy = [
|
sqlalchemy = [
|
||||||
"SQLAlchemy[asyncio]>=2.0.0"
|
"SQLAlchemy[asyncio]>=2.0.0",
|
||||||
|
"flask-sqlalchemy"
|
||||||
]
|
]
|
||||||
flask = [
|
flask = [
|
||||||
"Flask>=2.0.0",
|
"Flask>=2.0.0",
|
||||||
"Flask-RestX"
|
"Flask-RestX"
|
||||||
]
|
]
|
||||||
flask_sqlalchemy = [
|
flask_sqlalchemy = [
|
||||||
"Flask-SqlAlchemy",
|
"suou[sqlalchemy]",
|
||||||
|
"suou[flask]"
|
||||||
]
|
]
|
||||||
peewee = [
|
peewee = [
|
||||||
## HEADS UP! peewee has setup.py, may slow down installation
|
## HEADS UP! peewee has setup.py, may slow down installation
|
||||||
|
|
@ -70,7 +72,6 @@ full = [
|
||||||
"suou[quart]",
|
"suou[quart]",
|
||||||
"suou[peewee]",
|
"suou[peewee]",
|
||||||
"suou[markdown]",
|
"suou[markdown]",
|
||||||
"suou[flask-sqlalchemy]",
|
|
||||||
"suou[sass]"
|
"suou[sass]"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ from .redact import redact_url_password
|
||||||
from .http import WantsContentType
|
from .http import WantsContentType
|
||||||
from .color import chalk
|
from .color import chalk
|
||||||
|
|
||||||
__version__ = "0.7.4"
|
__version__ = "0.7.5"
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',
|
'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue',
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ from suou.classtools import MISSING
|
||||||
from suou.functools import future
|
from suou.functools import future
|
||||||
|
|
||||||
|
|
||||||
|
@future(version="0.9.0")
|
||||||
class FakeModule(ModuleType):
|
class FakeModule(ModuleType):
|
||||||
"""
|
"""
|
||||||
Fake module used in @glue() in case of import error
|
Fake module used in @glue() in case of import error
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue