Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #55 from edx/awais786/BOM-67
Browse files Browse the repository at this point in the history
BOM-74
  • Loading branch information
awais786 authored Aug 6, 2019
2 parents 26eca65 + eba098f commit a5712f0
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ matrix:
env: TOXENV=py27
- python: 3.6
env: TOXENV=py36
allow_failures:
- env: TOXENV=py36
cache: pip
sudo: false
install:
Expand Down
2 changes: 1 addition & 1 deletion analyticsclient/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.15.3'
__version__ = '0.15.4'
3 changes: 1 addition & 2 deletions analyticsclient/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
from analyticsclient.course_summaries import CourseSummaries
from analyticsclient.course_totals import CourseTotals
from analyticsclient.engagement_timeline import EngagementTimeline
from analyticsclient.exceptions import (ClientError, InvalidRequestError,
NotFoundError, TimeoutError)
from analyticsclient.exceptions import ClientError, InvalidRequestError, NotFoundError, TimeoutError # pylint: disable=redefined-builtin
from analyticsclient.module import Module
from analyticsclient.programs import Programs
from analyticsclient.status import Status
Expand Down
2 changes: 1 addition & 1 deletion analyticsclient/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class InvalidRequestError(ClientError):
pass


class TimeoutError(ClientError):
class TimeoutError(ClientError): # pylint: disable=redefined-builtin
"""The API server did not respond before the timeout expired."""

pass
2 changes: 1 addition & 1 deletion analyticsclient/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from analyticsclient.client import Client
from analyticsclient.constants import data_formats, http_methods
from analyticsclient.exceptions import ClientError, TimeoutError
from analyticsclient.exceptions import ClientError, TimeoutError # pylint: disable=redefined-builtin
from analyticsclient.tests import ClientTestCase


Expand Down
3 changes: 2 additions & 1 deletion openedx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ tags:
- data-engineering
- library
oeps:
oep-7: false
oep-2: true
oep-7: true
oep-18: false
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from __future__ import absolute_import

from setuptools import setup

from analyticsclient import __version__ as VERSION

setup(
Expand All @@ -9,6 +11,19 @@
url='https://github.com/edx/edx-analytics-data-api-client',
description='Client used to access edX analytics data warehouse',
long_description=open('README.rst').read(),
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License 2.0',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
install_requires=[
"requests",
],
Expand Down

0 comments on commit a5712f0

Please sign in to comment.