Skip to content

Commit

Permalink
Merge pull request #117 from moreati/py35
Browse files Browse the repository at this point in the history
Test with Python 3.5 on Appveyor, Travis, & Tox
  • Loading branch information
pganssle committed Sep 27, 2015
2 parents 083f666 + bb28f3a commit 9645c3d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install:
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ environment:
- PYTHON: "C:/Python33-x64"
- PYTHON: "C:/Python34"
- PYTHON: "C:/Python34-x64"
- PYTHON: "C:/Python35"
- PYTHON: "C:/Python35-x64"
install:
- ps: Start-FileDownload 'https://raw.github.com/pypa/pip/master/contrib/get-pip.py'
- "%PYTHON%/python.exe get-pip.py"
Expand Down
5 changes: 4 additions & 1 deletion dateutil/rrule.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
import calendar
import sys

from fractions import gcd
try:
from math import gcd
except ImportError:
from fractions import gcd

from six import advance_iterator, integer_types
from six.moves import _thread
Expand Down
8 changes: 7 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
[tox]
envlist = py26, py27, py32, py33, py34
envlist =
py26,
py27,
py32,
py33,
py34,
py35,

[testenv]
commands = python setup.py test -q
Expand Down

0 comments on commit 9645c3d

Please sign in to comment.