Skip to content

Commit b4fa157

Browse files
authored
Merge pull request #76 from python-effect/drop-2.6
drop 2.6 support
2 parents 826cbc5 + 660bda7 commit b4fa157

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ sudo: false
33
language: python
44
python:
55
- "2.7"
6-
- "2.6"
76
- "3.4"
7+
- "3.5"
88
- "pypy"
99
install:
1010
- pip install .
1111
- pip install -r dev-requirements.txt
12-
- pip install sphinx
12+
- pip install sphinx sphinx_rtd_theme
1313
script:
1414
- make lint
1515
- py.test

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ the effects (that is, IO or state manipulation) in your code. Documentation is
1212
available at https://effect.readthedocs.org/, and its PyPI page is
1313
https://pypi.python.org/pypi/effect.
1414

15-
It `supports`_ both Python 2.6 and up, and 3.4 and up, as well as PyPy.
15+
It `supports`_ Python 2.7, 3.4 and 3.5 as well as PyPy.
1616

1717
.. _`supports`: https://travis-ci.org/python-effect/effect
1818

effect/testing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ def test_code():
161161
sequence dispatcher.
162162
"""
163163
perf = partial(perform_sequence, fallback_dispatcher=fallback_dispatcher)
164+
164165
def performer(intent):
165166
if len(intent.effects) != len(parallel_seqs):
166167
raise AssertionError(

0 commit comments

Comments
 (0)