Skip to content

Commit 2fa5833

Browse files
authored
Update build matrix (#75)
* Update travis for Python 3.6 (#71) * Update travis for Python 3.6 * Update travis excludes * Prevent call of setup test * seems like nose already calls this * updated build matrix * works fine without * fix fragile yaml syntax * django20 is compatible with py34 * drop py33, added py36 classifier * updated versions, remove pypi downloads shield
1 parent e6a03b2 commit 2fa5833

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

.travis.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,34 @@ language: python
22
sudo: false
33
python:
44
- "2.7"
5-
- "3.3"
65
- "3.4"
76
- "3.5"
7+
- "3.6"
88
env:
99
- REQUIREMENTS="django>=1.8,<1.9"
1010
- REQUIREMENTS="django>=1.9,<1.10"
1111
- REQUIREMENTS="django>=1.10,<1.11"
12+
- REQUIREMENTS="django>=1.11,<2.0"
13+
- REQUIREMENTS="django>=2.0,<2.1"
1214
- REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
1315
matrix:
1416
exclude:
15-
- python: "3.3"
17+
- python: "2.7"
18+
env: REQUIREMENTS="django>=2.0,<2.1"
19+
- python: "2.7"
20+
env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
21+
- python: "3.4"
1622
env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
17-
- python: "3.3"
18-
env: REQUIREMENTS="django>=1.9,<1.10"
19-
- python: "3.3"
20-
env: REQUIREMENTS="django>=1.10,<1.11"
21-
- python: "3.5"
22-
env: REQUIREMENTS="django>=1.7,<1.8"
2323
- python: "3.5"
2424
env: REQUIREMENTS="django>=1.8,<1.9"
25+
- python: "3.6"
26+
env: REQUIREMENTS="django>=1.8,<1.9"
27+
- python: "3.6"
28+
env: REQUIREMENTS="django>=1.9,<1.10"
29+
- python: "3.6"
30+
env: REQUIREMENTS="django>=1.10,<1.11"
31+
- python: "3.6"
32+
env: REQUIREMENTS="django>=1.11,<2.0"
2533
allow_failures:
2634
- env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
2735
cache:

README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
:target: https://travis-ci.org/kraiz/django-crontab
33
.. image:: https://img.shields.io/coveralls/kraiz/django-crontab/master.svg
44
:target: https://coveralls.io/r/kraiz/django-crontab
5-
.. image:: https://img.shields.io/pypi/dw/django-crontab.svg
6-
:target: https://pypi.python.org/pypi/django-crontab
75
.. image:: https://img.shields.io/pypi/v/django-crontab.svg
86
:target: https://pypi.python.org/pypi/django-crontab
97
.. image:: https://img.shields.io/pypi/pyversions/django-crontab.svg
@@ -14,7 +12,7 @@
1412
about
1513
=====
1614

17-
dead simple crontab powered job scheduling for django (1.8+).
15+
dead simple crontab powered job scheduling for django (1.8-2.0).
1816

1917
setup
2018
=====

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
'Programming Language :: Python :: 2',
3131
'Programming Language :: Python :: 2.7',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.3',
3433
'Programming Language :: Python :: 3.4',
3534
'Programming Language :: Python :: 3.5',
35+
'Programming Language :: Python :: 3.6',
3636
'Topic :: System :: Installation/Setup'
3737
]
3838
)

tests/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
import os
22

3-
from django.test.utils import setup_test_environment
4-
5-
63
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
7-
setup_test_environment()

0 commit comments

Comments
 (0)