Skip to content

Commit c5e38e6

Browse files
authored
Merge pull request #63 from ambitioninc/develop
1.1.0
2 parents 20949b4 + 071da60 commit c5e38e6

File tree

6 files changed

+31
-26
lines changed

6 files changed

+31
-26
lines changed

.travis.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
1+
dist: xenial
12
language: python
2-
33
sudo: false
44

55
python:
6-
- "2.7"
7-
- "3.4"
8-
- "3.5"
96
- "3.6"
7+
- "3.7"
108

119
env:
1210
matrix:
13-
- DJANGO=1.11
1411
- DJANGO=2.0
12+
- DJANGO=2.1
13+
- DJANGO=2.2
1514
- DJANGO=master
1615

1716
addons:
18-
postgresql: '9.5'
17+
postgresql: '9.6'
1918

2019
matrix:
20+
exclude:
21+
- { python: "3.7", env: DJANGO=2.0 }
22+
2123
include:
2224
- { python: "3.6", env: TOXENV=flake8 }
2325

24-
exclude:
25-
- { python: "2.7", env: DJANGO=master }
26-
- { python: "2.7", env: DJANGO=2.0 }
27-
- { python: "3.4", env: DJANGO=master }
28-
2926
allow_failures:
3027
- env: DJANGO=master
3128

entity_emailer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.1.0'

release_notes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Release Notes
22
=============
33

4+
v1.1.0
5+
------
6+
* Python 3.7
7+
* Django 2.1
8+
* Django 2.2
9+
410
v1.0.0
511
------
612
* Django 2.0 support

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
max-line-length = 120
33
exclude = build,docs,venv,env,*.egg,migrations,south_migrations
44
max-complexity = 10
5-
ignore = E402
5+
ignore = E402, W504
66

77
[bdist_wheel]
88
universal = 1

setup.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,23 @@ def get_version():
3030
packages=find_packages(),
3131
classifiers=[
3232
'Programming Language :: Python',
33-
'Programming Language :: Python :: 2.7',
34-
'Programming Language :: Python :: 3.4',
35-
'Programming Language :: Python :: 3.5',
3633
'Programming Language :: Python :: 3.6',
34+
'Programming Language :: Python :: 3.7',
3735
'Intended Audience :: Developers',
3836
'License :: OSI Approved :: MIT License',
3937
'Operating System :: OS Independent',
4038
'Framework :: Django',
41-
'Framework :: Django :: 1.11',
4239
'Framework :: Django :: 2.0',
40+
'Framework :: Django :: 2.1',
41+
'Framework :: Django :: 2.2',
4342
],
4443
license='MIT',
4544
install_requires=[
4645
'beautifulsoup4>=4.3.2',
47-
'Django>=1.11',
48-
'django-db-mutex>=1.1.0',
49-
'django-entity>=3.1.1',
50-
'django-entity-event>=1.1.0',
46+
'Django>=2.0',
47+
'django-db-mutex>=1.2.0',
48+
'django-entity>=4.2.0',
49+
'django-entity-event>=1.2.0',
5150
'ambition-django-uuidfield>=0.5.0',
5251
],
5352
tests_require=[

tox.ini

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
[tox]
22
envlist =
33
flake8
4-
py{27,34,35,36}-django111
5-
py{34,35,36}-django20
6-
py{35,36}-djangomaster
4+
py{36}-django20
5+
py{36,37}-django21
6+
py{36,37}-django22
7+
py{36,37}-djangomaster
78

89
[testenv]
910
setenv =
1011
DB = postgres
1112
deps =
12-
django111: Django>=1.11,<2.0
1313
django20: Django>=2.0,<2.1
14+
django21: Django>=2.1,<2.2
15+
django22: Django>=2.2,<2.3
1416
djangomaster: https://github.com/django/django/archive/master.tar.gz
1517
-rrequirements/requirements-testing.txt
1618
commands =
@@ -23,6 +25,7 @@ commands = flake8 entity_emailer
2325

2426
[travis:env]
2527
DJANGO =
26-
1.11: django111
2728
2.0: django20
29+
2.1: django21
30+
2.2: django22
2831
master: djangomaster

0 commit comments

Comments
 (0)