Skip to content

Commit

Permalink
Merge pull request #17 from edx/BOM-1570
Browse files Browse the repository at this point in the history
Updated the travis config -- BOM-1570
  • Loading branch information
mraarif authored May 4, 2020
2 parents 8f2c94b + ce9fb4c commit a20cd1f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
language: python
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
python:
- 2.7
- 3.5
- 3.5
- 3.8
install: pip install -r requirements.txt
script:
- pycodestyle . --max-line-length=419 # TODO 419 --> 120
- pycodestyle . --max-line-length=419 # TODO 419 --> 120
deploy:
provider: pypi
user: edx
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bleach==2.1.4
bleach
boto
fs
mako
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def package_data(pkg, root_list):

setup(
name='recommender-xblock',
version='1.4.6',
version='1.4.7',
description='recommender XBlock', # TODO: write a better description.
long_description=README,
author='edX',
Expand All @@ -72,8 +72,8 @@ def package_data(pkg, root_list):
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8',
],
)

0 comments on commit a20cd1f

Please sign in to comment.