Pydantic Import Error for an old repo

Greetings,
I just happened to visit an old app which I had deployed 2 years ago and it now says

**pydantic.errors.PydanticImportError: `BaseSettings` has been moved to the `pydantic-settings` package. See https://docs.pydantic.dev/2.6/migration/#basesettings-has-moved-to-pydantic-settings for more details.**

Below is a link to my repo:
AutoPlot.py
Is there something that I have to add in the requirements.txt?

Thank you in advance. :saluting_face:

1 Like

Hi @Sai_Ram_k,

I forked your repo and deployed the app here and it seems to be working. The error you’re seeing is probably a result of an issue with pydantic and the older version of Python that your app is using.

I’d recommend deleting and redeploying your app, which will upgrade you to Python version 3.9 and should resolve the error.

Thank you for your response @Caroline .
I actually happened to fix the error already so it seems to be working fine now. The issue was with a package names pandas-profiling which I had used and pandas-profiling is now changed to ydata_profiling.
Hence I had to change

import pandas_profiling

to

from ydata_profiling import ProfileReport

and also include ydata_profiling in the requirements.txt file.

2 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.