Skip to content

Commit

Permalink
Merge pull request #72 from edx/clintonb/py35-test
Browse files Browse the repository at this point in the history
Testing on Python 3.5 instead of 3.4
  • Loading branch information
clintonb committed Apr 1, 2016
2 parents 67513bd + 28a1af7 commit 2bd9281
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: python
python:
- "2.7"
before_install:
- git fetch origin master:refs/remotes/origin/master
- "3.5"
install:
- make requirements
- pip install coveralls
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from setuptools import setup, find_packages

setup(
name="edx-opaque-keys",
version="0.2.1",
author="edX",
url="https://github.com/edx/opaque-keys",
name='edx-opaque-keys',
version='0.3.0',
author='edX',
url='https://github.com/edx/opaque-keys',
packages=find_packages(),
install_requires=[
"six",
"stevedore",
"pymongo"
'six',
'stevedore',
'pymongo'
],
entry_points={
'opaque_keys.testing': [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34
envlist = py27,py35
skip_missing_interpreters = True
skipsdist = True

Expand Down

0 comments on commit 2bd9281

Please sign in to comment.