Skip to content

Commit dd37641

Browse files
committed
⬇️ v3.1.6 Hold back dash.
1 parent a99de4e commit dd37641

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

meerschaum/api/_oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class CustomOAuth2PasswordRequestForm:
3030
def __init__(
3131
self,
32-
grant_type: str = fastapi.Form(None, regex="password|client_credentials"),
32+
grant_type: str = fastapi.Form(None, pattern="password|client_credentials"),
3333
username: Optional[str] = fastapi.Form(None),
3434
password: Optional[str] = fastapi.Form(None),
3535
scope: str = fastapi.Form(" ".join(STATIC_CONFIG['tokens']['scopes'])),

meerschaum/config/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Specify the Meerschaum release version.
33
"""
44

5-
__version__ = "3.1.5"
5+
__version__ = "3.1.6"

meerschaum/utils/packages/_packages.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@
157157
packages['sql'].update(packages['gis'])
158158
packages['dash'] = {
159159
'flask_compress' : 'Flask-Compress>=1.17.0',
160-
'dash' : 'dash>=3.1.1',
161-
'dash_bootstrap_components' : 'dash-bootstrap-components>=1.7.1',
160+
'dash' : 'dash<3.4.0',
161+
'dash_bootstrap_components' : 'dash-bootstrap-components>=2.0.4',
162162
'dash_ace' : 'dash-ace>=0.2.1',
163163
'dash_extensions' : 'dash-extensions>=2.0.4',
164164
'dash_daq' : 'dash-daq>=0.6.0',
@@ -170,7 +170,7 @@
170170
'gunicorn' : 'gunicorn>=23.0.0',
171171
'dotenv' : 'python-dotenv>=1.1.1',
172172
'websockets' : 'websockets>=15.0.1',
173-
'fastapi' : 'fastapi>=0.116.0',
173+
'fastapi' : 'fastapi>=0.128.0',
174174
'fastapi_login' : 'fastapi-login>=1.10.3',
175175
'multipart' : 'python-multipart>=0.0.20',
176176
'httpx' : 'httpx>=0.28.1',

requirements/full.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ databases>=0.9.0
6060
aiosqlite>=0.21.0
6161
asyncpg>=0.30.0
6262
Flask-Compress>=1.17.0
63-
dash>=3.1.1
64-
dash-bootstrap-components>=1.7.1
63+
dash<3.4.0
64+
dash-bootstrap-components>=2.0.4
6565
dash-ace>=0.2.1
6666
dash-extensions>=2.0.4
6767
dash-daq>=0.6.0
@@ -71,7 +71,7 @@ uvicorn[standard]>=0.35.0
7171
gunicorn>=23.0.0
7272
python-dotenv>=1.1.1
7373
websockets>=15.0.1
74-
fastapi>=0.116.0
74+
fastapi>=0.128.0
7575
fastapi-login>=1.10.3
7676
python-multipart>=0.0.20
7777
httpx>=0.28.1

0 commit comments

Comments
 (0)