惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
F
Fortinet All Blogs
J
Java Code Geeks
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
M
MIT News - Artificial intelligence
腾讯CDC
Last Week in AI
Last Week in AI
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
P
Proofpoint News Feed
博客园 - 叶小钗
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
L
LangChain Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

Vercel Community - Latest posts

Custom domain times out while native vercel.app domain works Domain "asifhossain.dev" not resolving MX records, stuck on orphaned Netlify nameservers Custom domains timing out in Brazil while .vercel.app domains work normally Custom domains timing out on Vercel edge IPs in Brazil Help with Domain in Vercel and Clerk Suppress Vercel GitHub comments when a PR does not trigger a new deployment Why is Vercel not included in the Green Web Foundation? Deploying a Dual Website(NextJS + FastAPI) App Vercel Security Update : RazorPay Secret? I built a virtual Bash tool for the AI SDK, along with Workspace/Memory/Skills/Patch features. IconiqUI Border Code Svelte Drawer // Gesture-driven drawer component for Svelte 5 ogimagecn - Beautiful OG images, made simple launching sensory-ui: a sound-enabled react/next.js component library Regarding V0 affiliate program Noticed App vO Preview lost--Please Help This team has been flagged for abuse – (no response from support yet) Helppp Why lie about the Vercel AI Gateway free credit? After configuring Azure BYOK in AI Gateway, the image models cannot be used. Custom domains resolving to 216.198.79.1 intermittently timing out in Brazil Template Submission Link Request to unpause Hobby plan account Not resolving DNS on my country (Brazil) I am not able to see buld logs in deployment Your Team encountered an unknown problem. Please reach out to our support team for details. how to contact Vercel customer service team? GitHub push events stopped triggering builds on both projects — Hobby plan Drag and Drop Deployments
`.python-version`, `pyproject.toml` and `Pipfile.lock` al...
@setounkpe7 · 2026-04-21 · via Vercel Community - Latest posts
Hi — hoping someone has seen this. I’m on a monorepo (Vite frontend + FastAPI under api/index.py ) on the Hobby plan. The Python builder always picks CPython 3.14.3 regardless of which of the three documented pin mechanisms I use, at any location. The docs say 3.12 is the default; on my project it effectively isn’t. What I’ve tried (all on a fresh push, build cache skipped) | Config | Result | |—|—| | No Python pin anywhere | Using CPython 3.14.3 | | .python-version = 3.12 at repo root | Using CPython 3.14.3 | | .python-version = 3.13 at repo root | Using CPython 3.14.3 | | .python-version inside api/ | Using CPython 3.14.3 | | pyproject.toml at root with requires-python = ">=3.12" | Using CPython 3.14.3 | | pyproject.toml inside api/ with requires-python = "==3.12.*" + .python-version + uv.lock (exact mirror of vercel/examples/python/next-fastapi-monorepo/backend ) | Using CPython 3.14.3 | | Pipfile + Pipfile.lock at root with python_version = "3.12" | Using CPython 3.14.3 | | PYTHON_VERSION=3.12 env var on the project (all three scopes) | Using CPython 3.14.3 | | Project Settings → Node.js: 24.x → 22.x (confirmed by Skipping build cache since Node.js version changed from "24.x" to "22.x" ) | Using CPython 3.14.3 | | package.json engines.node = "22.x" | Using CPython 3.14.3 | Representative build log (no pin at all) Cloning github.com/…/… (Branch: dev, Commit: …) Using CPython 3.14.3 Building psycopg2-binary==2.9.10 × Failed to build `psycopg2-binary==2.9.10` Error: pg_config executable not found. Error: Command "uv pip install" exited with 1 Note: older community posts (e.g. Deploy start to fail with uvicorn: command not found , Nov 2025) show builders that emitted No Python version specified in pyproject.toml or Pipfile.lock. Using latest installed version: 3.12 . My builds no longer emit any “Python version specified” line — uv just declares Using CPython 3.14.3 directly. vercel.json { "$schema": "https://openapi.vercel.sh/vercel.json", "version": 2, "buildCommand": "cd frontend && npm install && npm run build", "outputDirectory": "frontend/dist", "rewrites": [ { "source": "/api/(.*)", "destination": "/api/index.py" }, { "source": "/auth/(.*)", "destination": "/api/index.py" }, { "source": "/health", "destination": "/api/index.py" }, { "source": "/(.*)", "destination": "/index.html" } ] } api/index.py import sys, os sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "backend")) from app.main import app # noqa: F401 Project context Created 2026-04-14 (recent) Framework Preset: Other Node.js: 22.x (recently switched from 24.x, no effect on Python) Region: iad1 Plan: Hobby package.json lives in frontend/ Python source lives in api/index.py + a shared package in backend/ Questions Is the project silently enrolled in an early 3.14 default rollout? If yes, what’s the opt-out path on Hobby — any project setting, env var, or file I can commit? If no, why are the three documented pin files being ignored? Is there an additional prerequisite (a specific file name, a specific location, a specific vercel.json shape)? Happy to share more of the build log on request. Thanks!