Skip to content

Commit b534cd3

Browse files
committed
Remove OrderedDict from setup.py
So we don't have to mess with collections.abc changing in python versions
1 parent 8447f0d commit b534cd3

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

setup.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""tmuxp lives at <https://github.com/tmux-python/tmuxp>."""
22
import sys
3-
from collections import OrderedDict
43

54
from setuptools import setup
65
from setuptools.command.test import test as TestCommand
@@ -41,13 +40,11 @@ def run_tests(self):
4140
name=about['__title__'],
4241
version=about['__version__'],
4342
url=about['__github__'],
44-
project_urls=OrderedDict(
45-
(
46-
('Documentation', about['__docs__']),
47-
('Code', about['__github__']),
48-
('Issue tracker', about['__tracker__']),
49-
)
50-
),
43+
project_urls={
44+
'Documentation': about['__docs__'],
45+
'Code': about['__github__'],
46+
'Issue tracker': about['__tracker__'],
47+
},
5148
download_url=about['__pypi__'],
5249
license=about['__license__'],
5350
author=about['__author__'],

0 commit comments

Comments
 (0)