Skip to content

Commit d646f3a

Browse files
authored
Merge pull request #188 from morph-data/release/v0.3.1
Merge into main branch from release/v0.3.1
2 parents deaa8ba + 8c34420 commit d646f3a

4 files changed

Lines changed: 61 additions & 58 deletions

File tree

core/morph/api/cloud/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from morph.constants import MorphConstant
99
from morph.task.utils.morph import find_project_root_dir
1010

11-
MORPH_API_BASE_URL = "https://api.morph-data.io/v0"
11+
MORPH_API_BASE_URL = "https://api.squadbase.dev/v0"
1212

1313

1414
def validate_project_id(method):

core/morph/config/project.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from typing import Dict, List, Optional
2+
from typing import Any, Dict, List, Optional
33

44
import yaml
55
from pydantic import BaseModel, Field
@@ -23,8 +23,8 @@ class BuildConfig(BaseModel):
2323

2424
class DeploymentConfig(BaseModel):
2525
provider: Optional[str] = "aws"
26-
aws: Optional[Dict[str, Optional[str]]] = None
27-
gcp: Optional[Dict[str, Optional[str]]] = None
26+
aws: Optional[Dict[str, Any]] = None
27+
gcp: Optional[Dict[str, Any]] = None
2828

2929

3030
class MorphProject(BaseModel):

poetry.lock

Lines changed: 52 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "morph-data"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Morph is a python-centric full-stack framework for building and deploying data apps."
55
authors = ["Morph <contact@morphdb.io>"]
66
packages = [
@@ -32,7 +32,7 @@ classifiers=[
3232
]
3333

3434
[tool.poetry.dependencies]
35-
python = ">=3.9,<3.13"
35+
python = ">=3.9.2,<3.13"
3636
click = "^8.1.7"
3737
pandas = "^2.1.3"
3838
requests = "^2.31.0"
@@ -43,7 +43,7 @@ python-dotenv = "^1.0.1"
4343
colorlog = "^6.8.2"
4444
sqlalchemy = "^2.0.36"
4545
sshtunnel = "^0.4.0"
46-
cryptography = "^42.0.8"
46+
cryptography = "^44.0.1"
4747
snowflake-connector-python = "^3.11.0"
4848
aiomysql = "^0.2.0"
4949
paramiko = "^3.4.0"
@@ -53,14 +53,14 @@ gspread = "^6.1.2"
5353
google-api-python-client = "^2.139.0"
5454
google-cloud-bigquery = "^3.25.0"
5555
duckdb = "^1.0.0"
56-
Jinja2 = "^3.1.4"
56+
Jinja2 = "^3.1.6"
5757
pyarrow = "^17.0.0"
5858
sqlglot = "^25.22.0"
5959
colorama = "^0.4.6"
6060
fastapi = "^0.115.4"
6161
uvicorn = "^0.32.0"
6262
typing-extensions = "^4.12.2"
63-
python-multipart = "^0.0.17"
63+
python-multipart = "^0.0.18"
6464
fastapi-inertia = "^1.0.3"
6565
itsdangerous = "^2.2.0"
6666
starlette = "^0.41.3"

0 commit comments

Comments
 (0)