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
Für Django 4.x (#473) sollten wir aber auf 3.8+ upgraden, idealerweise dann wohl grad 3.11. Ein kurzer Test zeigt einige Warnings, jedoch primär in Django selbst oder sonstigen third-party libs:
../../../usr/local/lib/python3.11/site-packages/django/http/request.py:1
/usr/local/lib/python3.11/site-packages/django/http/request.py:1: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13
import cgi
../../../usr/local/lib/python3.11/site-packages/django/utils/encoding.py:257
/usr/local/lib/python3.11/site-packages/django/utils/encoding.py:257: DeprecationWarning: Use setlocale(), getencoding() and getlocale() instead
encoding = locale.getdefaultlocale()[1] or "ascii"
../../../usr/local/lib/python3.11/site-packages/certifi/core.py:36
/usr/local/lib/python3.11/site-packages/certifi/core.py:36: DeprecationWarning: path is deprecated. Use files() instead. Refer to https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy for migration advice.
_CACERT_CTX = get_path("certifi", "cacert.pem")
tests/documents/test_views.py::DocumentDownloadTest::testExamRequireLogin
<frozen importlib._bootstrap>:283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead
The text was updated successfully, but these errors were encountered:
Mit Python 3.10 gabs ne Warning, die ich auf Anhieb grad nicht lokalisieren konnte:
tests/documents/test_views.py::DocumentDownloadTest::testExamRequireLogin
<frozen importlib._bootstrap>:283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
Also gabs jetzt erstmal Python 3.9. Vermutlich machts Sinn, sich 3.10 bzw. gleich 3.11 dann zusammen mit Django 4 anzuschauen.
Wir nutzen momentan Python 3.7. Dies wird noch bis Mitte 2023 unterstützt: https://devguide.python.org/#status-of-python-branches
Für Django 4.x (#473) sollten wir aber auf 3.8+ upgraden, idealerweise dann wohl grad 3.11. Ein kurzer Test zeigt einige Warnings, jedoch primär in Django selbst oder sonstigen third-party libs:
The text was updated successfully, but these errors were encountered: