Changes between Version 24 and Version 25 of CI


Ignore:
Timestamp:
Dec 24, 2018, 12:27:45 PM (5 years ago)
Author:
Tim Graham
Comment:

Added Python/SQLite table for Windows builds

Legend:

Unmodified
Added
Removed
Modified
  • CI

    v24 v25  
    2323* [https://djangoci.com/job/isort/ isort] - runs `isort --recursive --check-only .` from the root checkout directory and fails if any imports aren't [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#imports sorted properly].
    2424* [https://djangoci.com/job/pull-requests-javascript/ pull-requests-javascript] - runs the [https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/javascript/#testing-from-the-command-line JavaScript tests].
    25 * [https://djangoci.com/view/PR%20Builders/job/pull-requests-windows/ pull-requests-windows] - runs with Python 3.5.4 with an update to SQLite 3.26.0 (replace C:\Python35\DLLs\sqlite3.dll with the one from [https://sqlite.org/download.html sqlite-dll-win64-x64-XXXXXX.zip]) for testing [https://github.com/django/django/blob/5e8a07d69dee354d9e6dbda874f9454f4bc3491e/django/db/backends/sqlite3/features.py#L38 can_alter_table_rename_column] and #29182.
     25* [https://djangoci.com/view/PR%20Builders/job/pull-requests-windows/ pull-requests-windows] - runs with Python 3.7.x (see django-windows below)
    2626
    2727== Troubleshooting ==
     
    3434
    3535A: The Python dependencies probably failed to install from PyPI. There's an issue where PyPI sometimes [https://github.com/pypa/pip/issues/5345 fails to return a correct response].
     36
     37== Notes for other builds ==
     38
     39=== [https://djangoci.com/job/django-windows/ django-windows] ===
     40
     41||= Python =||= SQLite =||
     42|| 3.5.4 || 3.8.11 ||
     43|| 3.6.8 || 3.21.0 ||
     44|| 3.7.2 || 3.26.0 ||
     45(installed with Windows x86-64 executable installer)
     46
     47The SQLite for Python 3.7.x is updated to SQLite 3.26.0 (from 3.21.0) by replacing C:\Python37\DLLs\sqlite3.dll with the one from [https://sqlite.org/download.html sqlite-dll-win64-x64-XXXXXX.zip]. This update allows testing [https://github.com/django/django/blob/5e8a07d69dee354d9e6dbda874f9454f4bc3491e/django/db/backends/sqlite3/features.py#L38 can_alter_table_rename_column], #29182, and other features that require a more recent SQLite.
Back to Top