summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.cfg2
-rw-r--r--src/tests/test.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..2a9acf1
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,2 @@
+[bdist_wheel]
+universal = 1
diff --git a/src/tests/test.py b/src/tests/test.py
index 872d771..bca78b3 100644
--- a/src/tests/test.py
+++ b/src/tests/test.py
@@ -127,7 +127,7 @@ class TestSingleDispatch(unittest.TestCase):
c = collections
d = {"a": "b"}
l = [1, 2, 3]
- s = {object(), None}
+ s = set([object(), None])
f = frozenset(s)
t = (1, 2, 3)