Skip to content

Commit a20cd1f

Browse files
authored
Merge pull request #17 from edx/BOM-1570
Updated the travis config -- BOM-1570
2 parents 8f2c94b + ce9fb4c commit a20cd1f

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: python
2-
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
2+
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
33
python:
4-
- 2.7
5-
- 3.5
4+
- 3.5
5+
- 3.8
66
install: pip install -r requirements.txt
77
script:
8-
- pycodestyle . --max-line-length=419 # TODO 419 --> 120
8+
- pycodestyle . --max-line-length=419 # TODO 419 --> 120
99
deploy:
1010
provider: pypi
1111
user: edx

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bleach==2.1.4
1+
bleach
22
boto
33
fs
44
mako

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def package_data(pkg, root_list):
4747

4848
setup(
4949
name='recommender-xblock',
50-
version='1.4.6',
50+
version='1.4.7',
5151
description='recommender XBlock', # TODO: write a better description.
5252
long_description=README,
5353
author='edX',
@@ -72,8 +72,8 @@ def package_data(pkg, root_list):
7272
"Intended Audience :: Developers",
7373
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
7474
"Natural Language :: English",
75-
"Programming Language :: Python :: 2",
76-
"Programming Language :: Python :: 2.7",
75+
"Programming Language :: Python :: 3",
7776
'Programming Language :: Python :: 3.5',
77+
'Programming Language :: Python :: 3.8',
7878
],
7979
)

0 commit comments

Comments
 (0)