Skip to content

Commit 93e7686

Browse files
authored
Merge pull request #63 from Alir3z4/django-2.0
Test on django 2.0
2 parents b607480 + 78b6e9b commit 93e7686

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

.travis.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
language: python
22
sudo: false
33
python:
4-
- 2.7
5-
- 3.5
6-
- 3.6
7-
- pypy
4+
- '2.7'
5+
- '3.5'
6+
- '3.6'
7+
- 'pypy'
8+
env:
9+
- DJANGO="Django>=1.8.0,<1.9.0"
10+
- DJANGO="Django>=1.11,<1.12.0"
11+
- DJANGO="Django>=2.0,<2.1"
12+
matrix:
13+
exclude:
14+
- python: '2.7'
15+
env: DJANGO="Django>=2.0,<2.1"
16+
- python: 'pypy'
17+
env: DJANGO="Django>=2.0,<2.1"
818
install:
9-
- pip install -r requirements/dev.txt
19+
- pip install $DJANGO
20+
- pip install -r requirements/dev.txt
1021
script:
11-
- flake8 *.py django_markwhat/*.py
12-
- python run_tests.py
22+
- flake8 *.py django_markwhat/*.py
23+
- python run_tests.py

ChangeLog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.6
2+
================
3+
----
4+
5+
* Now tested on Django 2.0
6+
17
1.5.1 2016-12-07
28
================
39
----

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
Django==1.11.4

requirements/dev.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
-r ../requirements.txt
2-
31
Markdown==2.6.9
42
CommonMark==0.7.4
53
textile==3.0.0

0 commit comments

Comments
 (0)