Skip to content

Commit

Permalink
Merge pull request #57 from edx/ahsan/LEARNER-1182-add-support-for-dj…
Browse files Browse the repository at this point in the history
…ango-1.11

Added Support for Django 1.11 and python 3.6
  • Loading branch information
Ahsan Ulhaq authored Jun 1, 2017
2 parents ee649fe + eef5d08 commit 9ed7310
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,20 @@ language: python
python:
- 2.7
- 3.5
- 3.6

env:
- TOXENV=django18
- TOXENV=django19
- TOXENV=django110
- TOXENV=django111

matrix:
include:
- python: 3.5
- python: 3.6
env: TOXENV=quality
python: 3.6
env: TOXENV=django111

cache:
directories:
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ Sarina Canelake <[email protected]>
Steve Strassmann <[email protected]>
Will Daly <[email protected]>
Dave St.Germain <[email protected]>
Ahsan Ul Haq <[email protected]>
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ Details of the config.yaml file are in `edx-platform/conf/locale/config.yaml
Changes
=======

v0.3.8
------

* Added support for Django 1.11 and Python 3.6

v0.3.7
------

Expand Down
2 changes: 1 addition & 1 deletion i18n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from . import config

__version__ = '0.3.7'
__version__ = '0.3.8'


class Runner:
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='edx-i18n-tools',
version='0.3.7',
version='0.3.8',
description='edX Internationalization Tools',
author='edX',
author_email='[email protected]',
Expand All @@ -13,7 +13,7 @@
'i18n',
],
install_requires=[
'django>=1.8,<1.11',
'django>=1.8,<2.0',
'polib',
'path.py>=7.0',
'pyYaml',
Expand All @@ -34,8 +34,11 @@
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py{27,35}-django{18,19,110},quality
envlist = py{27,35}-django{18,19,110,111}, py36-django111, quality

[testenv]
deps =
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<2.0
-rtest_requirements.txt

commands =
Expand Down

0 comments on commit 9ed7310

Please sign in to comment.