Changes between Version 4 and Version 5 of DjangoOnWindows
- Timestamp:
- Jun 30, 2008, 10:03:22 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoOnWindows
v4 v5 9 9 As of r7805 the test suite is failing in two places when run on Windows + Python 2.5.2: 10 10 11 * If setuptools is installed, on a test from {{{tests/regressiontests/templates/loaders.py}}} related to trying to load a template from an egg. From a [http://dpaste.com/59930/ report on #django-dev] this test also fails on OS X (OS XLeopard, Python 2.5.1, setuptools 0.6c8).11 * If setuptools is installed, on a test from {{{tests/regressiontests/templates/loaders.py}}} related to trying to load a template from an egg. From a [http://dpaste.com/59930/ report] on #django-dev this test also fails on OS X (Leopard, Python 2.5.1, setuptools 0.6c8). 12 12 * On a test from {{{tests/regressiontests/queries/models.py}}} when using the sqlite3 Django DB backend. 13 13 … … 137 137 #!python 138 138 Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit (Intel)] on win32 139 Type "help", "copyright", "credits" or "license" for more information. 140 >>> from sqlite3 import dbapi2 141 >>> print dbapi2.version_info 142 (2, 3, 2) 143 >>> print dbapi2.sqlite_version_info 144 (3, 3, 4) 145 }}} 146 147 The win32 installer for Python 2.5 has the same combination of pysqlite/sqlite versions and exhibits the same problem: 148 149 {{{ 150 #!python 151 Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win32 139 152 Type "help", "copyright", "credits" or "license" for more information. 140 153 >>> from sqlite3 import dbapi2