Skip to content

Commit

Permalink
CI fix for 2.7 and pypy + add 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tomMoral committed Aug 16, 2018
1 parent c5ab90e commit 654ea89
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: python
sudo: false
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"

# This disables sudo, but makes builds start much faster
Expand Down
2 changes: 1 addition & 1 deletion cloudpickle/cloudpickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def save_dynamic_class(self, obj):
# calls to issubclass slower.
if "_abc_impl" in clsdict:
import abc
(registry, *_) = abc._get_dump(obj)
(registry, _, _, _) = abc._get_dump(obj)
clsdict["_abc_impl"] = [wr() for wr in registry]

# On PyPy, __doc__ is a readonly attribute, so we need to include it in
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, py35, py36, pypy, pypy3
envlist = py27, py34, py35, py36, py37, pypy, pypy3

[testenv]
deps = -rdev-requirements.txt
Expand Down

0 comments on commit 654ea89

Please sign in to comment.