mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-31 18:39:16 +01:00
Merge pull request #364 from flinz/bug/travis-build-fails
Change supported django+python versions
This commit is contained in:
commit
9a8c93fb30
10
.travis.yml
10
.travis.yml
@ -1,15 +1,23 @@
|
|||||||
language: python
|
language: python
|
||||||
|
|
||||||
python:
|
python:
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.3"
|
|
||||||
- "3.4"
|
- "3.4"
|
||||||
- "3.5"
|
- "3.5"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- DJANGO=1.7.11
|
- DJANGO=1.7.11
|
||||||
- DJANGO=1.8.7
|
- DJANGO=1.8.7
|
||||||
- DJANGO=1.9
|
- DJANGO=1.9
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
exclude:
|
||||||
|
- python: "3.5" # django 1.7 does not support python 3.5
|
||||||
|
env: DJANGO=1.7.11
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install argparse
|
- pip install argparse
|
||||||
- pip install -q Django==$DJANGO
|
- pip install -q Django==$DJANGO
|
||||||
- pip install -q -r requirements.txt
|
- pip install -q -r requirements.txt
|
||||||
|
|
||||||
script: python quicktest.py helpdesk
|
script: python quicktest.py helpdesk
|
@ -25,8 +25,8 @@ LICENSE.3RDPARTY for license terms for included packages.
|
|||||||
Dependencies (pre-flight checklist)
|
Dependencies (pre-flight checklist)
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
1. Python 2.7 or 3.3+ (3.3 support is new, please let us know how it goes)
|
1. Python 2.7 or 3.4+ (3.4+ support is new, please let us know how it goes)
|
||||||
2. Django (1.7 or newer, preferably 1.9)
|
2. Django (1.7 or newer, preferably 1.9 - Django 1.7 is not supported if you are using Python 3.5)
|
||||||
3. An existing WORKING Django project with database etc. If you
|
3. An existing WORKING Django project with database etc. If you
|
||||||
cannot log into the Admin, you won't get this product working.
|
cannot log into the Admin, you won't get this product working.
|
||||||
4. `pip install django-bootstrap-form` and add `bootstrapform` to `settings.INSTALLED_APPS`
|
4. `pip install django-bootstrap-form` and add `bootstrapform` to `settings.INSTALLED_APPS`
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Django>1.4
|
Django>1.6
|
||||||
django-bootstrap-form>=3.1,<4
|
django-bootstrap-form>=3.1,<4
|
||||||
email-reply-parser
|
email-reply-parser
|
||||||
django-markdown-deux
|
django-markdown-deux
|
||||||
|
Loading…
Reference in New Issue
Block a user