arteria / django-compat

Forward and backwards compatibility layer for Django 1.4, 1.7, 1.8, 1.9, 1.10, and 1.11
MIT License
106 stars 30 forks source link

Support for Django 1.11 LTS #53

Closed philippeowagner closed 7 years ago

philippeowagner commented 7 years ago

Django 1.11 LTS will be the last Django version to support Python 2. The next major release, Django 2.0, will only support Python 3.5+. So Django 1.11.x will probably be the last supported version for LTS-to-LTS support of django-compat (1.8-1.11). See Django's release notes for more.

walterrenner commented 7 years ago

There are Errors when running the test against Django 1.11:

======================================================================
FAIL: test_get_template_loaders (compat.tests.test_compat.CompatTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/walterrenner/workspace/django-compat/compat/tests/test_compat.py", line 247, in test_get_template_loaders
    self.assertEqual(len(template_loaders), 2)
AssertionError: 1 != 2

I will take a look in the next days.