Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow variance of other versions, account for dill fix #117

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions functional/test/test_functional.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# pylint: skip-file
from __future__ import absolute_import

import sys
import unittest
from collections import namedtuple
from itertools import product
Expand Down Expand Up @@ -880,8 +879,6 @@ def test_repr_max_lines(self):
self.assertEqual(len(repr(sequence)), 890)


# Skipping tests on pypy because of https://github.com/uqfoundation/dill/issues/73
@unittest.skipIf('__pypy__' in sys.builtin_module_names, 'Skip parallel tests on pypy')
class TestParallelPipeline(TestPipeline):
def setUp(self):
self.seq = pseq
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
future==0.16.0
six>=1.10.0,<=1.11.0
dill==0.2.5
dill>=0.2.6,<=0.2.7.1
bz2file==0.98
backports.lzma==0.0.3
tabulate==0.7.5
backports.lzma>=0.0.3,<=0.0.8
tabulate>=0.7.5,<=0.8.1