Skip to content

Commit

Permalink
Merge pull request #4 from edx/iamsobanjaved/python38
Browse files Browse the repository at this point in the history
Added python 3.8 in test matrix
  • Loading branch information
iamsobanjaved authored May 7, 2020
2 parents cc85ca0 + d4ac97a commit 305455b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
16 changes: 7 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
addons:
apt:
packages:
- nodejs
- nodejs
language: python
python:
- 3.5
- 3.8
sudo: false
env:
- TOXENV=django22
- TOXENV=eslint
- TOXENV=pylint
- TOXENV=csslint
- TOXENV=pycodestyle
- TOXENV=django111
- TOXENV=django20
- TOXENV=django21
- TOXENV=django22

before_install:
- "pip install -U pip"
- export BOTO_CONFIG=/dev/null
cache:
directories:
- $HOME/.cache/pip
directories:
- $HOME/.cache/pip
install:
- "make requirements"
- "pip install coveralls"
script:
- make test
branches:
only:
- master
only:
- master
after_success:
coveralls
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 1.1.0
* Removed support of Django < 2.2 versions
* Added support for python 3.8

## Version 1.0.0
* Pull translations from new tx acct
* Modernize XBlock infrastructure
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup


version = '1.0.1'
version = '1.1.0'
description = __doc__.strip().split('\n')[0]
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst')) as file_in:
Expand Down Expand Up @@ -54,7 +54,9 @@
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP',
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[tox]
envlist = csslint,eslint,pycodestyle,pylint,py35-django{111,20,21,22}
envlist = csslint,eslint,pycodestyle,pylint,py35-django22,py38-django{22,30}

[testenv]
deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
coverage
commands =
coverage run manage.py test
Expand Down

0 comments on commit 305455b

Please sign in to comment.