1

i am getting the following error

`INVALID_ARGUMENT: File Pipfile not supported in the"python37" runtime   in "./app.yaml", line 134`. 

I have tried other solutions that recommend removing Pipfile and replacing it with requirements.txt but they have not worked because the code base does not have a Pipfile to begin with.

Is Pipfile named something else? Maybe I am missing something in the app.yaml

runtime: python37
version: 1
default_expration: 7d
auto_id_policy: default
VickTree
  • 889
  • 11
  • 26

1 Answers1

1

According to App Engine dependencies:

Dependency specification using the Pipfile/Pipfile.lock standard is currently not supported and your project must not have these files present.

You can also check this thread that is related to your question.

Otherwise, it might be picking up a cached previous version of your files and app.yaml. You may try re-deploying while explicitly declaring the modified app.yaml. $ gcloud app deploy [new_app.yaml]

Donnald Cucharo
  • 3,866
  • 1
  • 10
  • 17