Skip to content

Commit

Permalink
support django 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nwolff committed May 2, 2019
1 parent 2d35980 commit b94cdcc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .envrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# see: https://github.com/direnv/direnv/wiki/Python#venv-stdlib-module
layout python-venv python3.6
layout python3
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-templates-email',
version='1.0.0',
version='1.0.1',
description='',
long_description='',
author='Nicholas Wolff',
Expand All @@ -13,7 +13,7 @@
'templates_email',
],
install_requires=[
'Django>=2.0,<2.2',
'Django>=2.0',
'structlog',
'typing',
'django-render-block',
Expand All @@ -27,6 +27,7 @@
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
{py36,py37}-{django20,django21}-test
py37-django21-{flake,mypy}
{py36,py37}-{django20,django21,django22}-test
py37-django22-{flake,mypy}

[testenv]
basepython =
Expand All @@ -14,6 +14,7 @@ commands =
deps =
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<2.3
structlog
typing
django-render-block
Expand Down

0 comments on commit b94cdcc

Please sign in to comment.