You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a project that is based on the wemake template. We created the project years ago some stuff might have changed with respect to the latest template
We have added some custom settings to server/settings/components/common.py. :
# common.py
MIN_GH_VERSION = "1.0.0"
Since we updated to latest version of django-stubs, we get mypy errors when we reference these errors in other parts of the code:
server/runner/logic/versioning.py:29: error: 'Settings' object has no attribute 'MIN_GH_VERSION'
We come from django-stubs 1.12.0 and are now on 1.16.0. We are on mypy version 1.1.1
What's wrong
We have a project that is based on the wemake template. We created the project years ago some stuff might have changed with respect to the latest template
We have added some custom settings to server/settings/components/common.py. :
Since we updated to latest version of django-stubs, we get mypy errors when we reference these errors in other parts of the code:
We come from django-stubs 1.12.0 and are now on 1.16.0. We are on mypy version 1.1.1
django-stubs in setup.cfg:
python
version: 3.10django
version: 3.2.18mypy
version: 1.1.1django-stubs
version: 1.16.0django-stubs-ext
version: 0.8.0edit: traced it back to this pull request I think: #1175
The text was updated successfully, but these errors were encountered: