Skip to content

Commit f07a0fe

Browse files
authored
Merge pull request mlavin#215 from mlavin/fix_ci
fixed ci
2 parents 5eda3fd + 8b8790f commit f07a0fe

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
docs/_build/*
99
docs/_static/*
1010
dist/*
11+
build/
1112
*.egg-info/*
1213
.coverage
13-
.tox/*
14+
.tox/*
15+
.idea/
16+
.venv/

.travis.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ dist: bionic
55
matrix:
66
fast_finish: true
77
include:
8-
- { python: "3.4", env: DJANGO=1.11 }
9-
10-
- { python: "3.5", env: DJANGO=1.11 }
11-
- { python: "3.5", env: DJANGO=2.1 }
12-
- { python: "3.5", env: DJANGO=2.2 }
13-
148
- { python: "3.6", env: DJANGO=1.11 }
159
- { python: "3.6", env: DJANGO=2.1 }
1610
- { python: "3.6", env: DJANGO=2.2 }

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ Josh Addington
2929
Tobias Zanke
3030
Petr Dlouhy
3131
Vinod Kurup
32+
Domenico Di Nicola
3233

3334
Thanks for all of your work!

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Release 1.3
2+
-----------------
3+
* added support to python 3.7 and 3.8
4+
* added support to django 3.0
5+
* added support to italian language
6+
* dropped support to python 2.7

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Features
3333
Installation Requirements
3434
-----------------------------------
3535

36-
- Python 3.4+
36+
- Python 3.6+
3737
- `Django <http://www.djangoproject.com/>`_ >= 1.11
3838
- `jQuery <http://jquery.com/>`_ >= 1.9, < 3.0
3939
- `jQuery UI <http://jqueryui.com/>`_ >= 1.10

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ def read_file(filename):
3636
'Operating System :: OS Independent',
3737
'Programming Language :: Python',
3838
'Programming Language :: Python :: 3',
39-
'Programming Language :: Python :: 3.4',
40-
'Programming Language :: Python :: 3.5',
4139
'Programming Language :: Python :: 3.6',
4240
'Programming Language :: Python :: 3.7',
4341
'Programming Language :: Python :: 3.8',

tox.ini

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
[tox]
22
envlist =
3-
py{34,35,36,37}-django111
4-
py{35,36,37}-django21
5-
py{35,36,37,38}-django22
3+
py{36,37}-django111
4+
py{36,37}-django21
5+
py{36,37,38}-django22
66
py{36,37,38}-django30
77
py{37,38}-django_master
88
docs
99

1010
[testenv]
1111
basepython =
12-
py34: python3.4
13-
py35: python3.5
1412
py36: python3.6
1513
py37: python3.7
1614
py38: python3.8
1715
deps =
18-
coverage>=4.0,<4.1
16+
coverage>=4.0
1917
django111: Django>=1.11,<2.0
2018
django21: Django>=2.1,<2.2
2119
django22: Django>=2.2,<3.0
@@ -24,7 +22,7 @@ deps =
2422
commands = coverage run runtests.py
2523

2624
[testenv:docs]
27-
basepython = python3.5
25+
basepython = python3.6
2826
deps =
2927
Sphinx
3028
Django

0 commit comments

Comments
 (0)