From 3630e14306d38d79b4f63e0bdab66e512a286092 Mon Sep 17 00:00:00 2001 From: charles lai Date: Sun, 25 Aug 2024 21:22:08 -0700 Subject: [PATCH] Remove numpy from nextjs-flask pip fails to install this dependency on Python 3.12 https://github.com/vercel/examples/issues/946 While fixing the error is certainly one way of going about it, numpy is not even used for the hello-world Flask app this ships with. To simplify things, this commit removes numpy as a dependency entirely. --- python/nextjs-flask/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/python/nextjs-flask/requirements.txt b/python/nextjs-flask/requirements.txt index 2a281c3d79..95fef4eb66 100644 --- a/python/nextjs-flask/requirements.txt +++ b/python/nextjs-flask/requirements.txt @@ -1,2 +1 @@ -numpy==1.24.3 Flask==3.0.3