forked from jazkarta/obsolete-ccx-keys
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from edx/clintonb/python3
Added support for Python 3.5
- Loading branch information
Showing
6 changed files
with
29 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.5" | ||
install: | ||
- make requirements | ||
- pip install coveralls | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ requirements: | |
pip install -r requirements.txt | ||
|
||
test: | ||
coverage run -m nose | ||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name='edx-ccx-keys', | ||
version='0.1.2', | ||
version='0.2.0', | ||
author='edX', | ||
author_email='[email protected]', | ||
description='Opaque key support custom courses on edX', | ||
|
@@ -16,12 +16,14 @@ | |
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
], | ||
packages=[ | ||
'ccx_keys', | ||
], | ||
install_requires=[ | ||
'edx-opaque-keys>=0.2.1,<1.0.0', | ||
'edx-opaque-keys>=0.3.0,<1.0.0', | ||
'six>=1.10.0,<2.0.0' | ||
], | ||
entry_points={ | ||
'course_key': [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ edx-lint>=0.4.0,<1.0.0 | |
mock>=1.3.0,<2.0.0 | ||
nose>=1.3.7,<2.0.0 | ||
pep8>=1.7.0,<2.0.0 | ||
tox>=2.3.1,<3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[tox] | ||
envlist = py27,py35 | ||
|
||
[testenv] | ||
deps = | ||
-rtest-requirements.txt | ||
|
||
commands = | ||
coverage run -m nose | ||
coverage report -m |