Giter VIP home page Giter VIP logo

Comments (4)

earshinov avatar earshinov commented on September 26, 2024 1

Hey @erhosen, sure!

Tests above are run with

  • Python 3.11.3
  • Django 4.2.7 (as specified in poetry.lock)

I observe the same errors in my project, running

  • Python 3.10.11
  • Django 4.1.4

from pydjantic.

erhosen avatar erhosen commented on September 26, 2024

Hey @earshinov 👋🏻
Can you share your Django version?

from pydjantic.

worldworm avatar worldworm commented on September 26, 2024

Hi there 👋🏻

This may be a pragmatic approach and may not fix the root cause, but it will get rid of the warnings: Just set the type of your DatabaseConfig to str | dict or str | dict[str, Any]

class DatabaseSettings(BaseDBConfig):
    """https://docs.djangoproject.com/en/dev/ref/settings/#databases"""
    default: str | dict[str, Any] = Field(
        default=str(f"sqlite:///{BASE_DIR}/db.sqlite3"),
        validation_alias="DATABASE_URL",
        conn_max_age=0,
        ssl_require=False,
    )
    model_config = SettingsConfigDict(env_file=BASE_DIR / ".env")

(Tested with Python 3.10.12, Django 5.0.6, pydjantic 1.1.4)

I'm not sure if this might be confusing, but if you want I can do a quick pr to add this to the tests and demo.

from pydjantic.

erhosen avatar erhosen commented on September 26, 2024

I'm not sure if this might be confusing, but if you want I can do a quick pr to add this to the tests and demo.

Thanks @worldworm, it would be nice to get rid of the warning!

from pydjantic.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.