diff --git a/.travis.yml b/.travis.yml index 57f7796..da0eaa7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,12 @@ +dist: xenial group: travis_latest language: python + +python: +- 3.5 +- 3.8 + cache: pip -matrix: - allow_failures: - - python: 2.7 - include: - - python: 2.7 - #- python: 3.5 - - python: 3.6 - - python: 3.7 - dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069) install: # - pip install -r requirements.txt - pip install flake8 diff --git a/setup.py b/setup.py index 2011c59..d5fc39d 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def package_data(pkg, roots): setup( name='crowdsourcehinter-xblock', - version='0.4', + version='0.5', description='crowdsourcehinter XBlock', # TODO: write a better description. packages=[ 'crowdsourcehinter', @@ -38,12 +38,9 @@ def package_data(pkg, roots): }, package_data=package_data("crowdsourcehinter", ["static", "public"]), classifiers=[ - 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', ], )