Skip to content

Commit

Permalink
Merge pull request #8 from edx/py38-support
Browse files Browse the repository at this point in the history
Added support for python 3.8
  • Loading branch information
mraarif authored May 6, 2020
2 parents 2178ac7 + 25e3cdd commit 9374fc3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
15 changes: 6 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
],
)

0 comments on commit 9374fc3

Please sign in to comment.