Skip to content
Merged
2 changes: 1 addition & 1 deletion core/morph/api/cloud/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from morph.constants import MorphConstant
from morph.task.utils.morph import find_project_root_dir

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


def validate_project_id(method):
Expand Down
6 changes: 3 additions & 3 deletions core/morph/config/project.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from typing import Dict, List, Optional
from typing import Any, Dict, List, Optional

import yaml
from pydantic import BaseModel, Field
Expand All @@ -23,8 +23,8 @@ class BuildConfig(BaseModel):

class DeploymentConfig(BaseModel):
provider: Optional[str] = "aws"
aws: Optional[Dict[str, Optional[str]]] = None
gcp: Optional[Dict[str, Optional[str]]] = None
aws: Optional[Dict[str, Any]] = None
gcp: Optional[Dict[str, Any]] = None


class MorphProject(BaseModel):
Expand Down
101 changes: 52 additions & 49 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "morph-data"
version = "0.3.0"
version = "0.3.1"
description = "Morph is a python-centric full-stack framework for building and deploying data apps."
authors = ["Morph <contact@morphdb.io>"]
packages = [
Expand Down Expand Up @@ -32,7 +32,7 @@ classifiers=[
]

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
python = ">=3.9.2,<3.13"
click = "^8.1.7"
pandas = "^2.1.3"
requests = "^2.31.0"
Expand All @@ -43,7 +43,7 @@ python-dotenv = "^1.0.1"
colorlog = "^6.8.2"
sqlalchemy = "^2.0.36"
sshtunnel = "^0.4.0"
cryptography = "^42.0.8"
cryptography = "^44.0.1"
snowflake-connector-python = "^3.11.0"
aiomysql = "^0.2.0"
paramiko = "^3.4.0"
Expand All @@ -53,14 +53,14 @@ gspread = "^6.1.2"
google-api-python-client = "^2.139.0"
google-cloud-bigquery = "^3.25.0"
duckdb = "^1.0.0"
Jinja2 = "^3.1.4"
Jinja2 = "^3.1.6"
pyarrow = "^17.0.0"
sqlglot = "^25.22.0"
colorama = "^0.4.6"
fastapi = "^0.115.4"
uvicorn = "^0.32.0"
typing-extensions = "^4.12.2"
python-multipart = "^0.0.17"
python-multipart = "^0.0.18"
fastapi-inertia = "^1.0.3"
itsdangerous = "^2.2.0"
starlette = "^0.41.3"
Expand Down