Skip to content
Open
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
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
language: python
python:
- "3.10"
- "3.9"
- "3.8"
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
- "pypy"

install:
Expand Down
2 changes: 1 addition & 1 deletion memoize/options.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from functools import partial
from collections import Callable
from collections.abc import Callable


def call_or_pass(value, args, kwargs):
Expand Down