Skip to content

Commit 1110ac3

Browse files
authored
Remove spaces from setup.py version specifiers (#432)
1 parent db1fc25 commit 1110ac3

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

setup.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
from os import listdir
1111
from os.path import isfile, join
12-
from sys import version_info
1312
import re
1413
import logging
1514
from setuptools import setup, find_packages
@@ -25,17 +24,17 @@
2524

2625
# Dependencies
2726
extras_require = {
28-
'serial': ['pyserial ~= 3.0'],
29-
'neovi': ['python-ics >= 2.12']
27+
'serial': ['pyserial~=3.0'],
28+
'neovi': ['python-ics>=2.12']
3029
}
3130

3231
tests_require = [
33-
'mock ~= 2.0',
34-
'nose ~= 1.3',
35-
'pytest ~= 3.6',
36-
'pytest-timeout ~= 1.2',
37-
'pytest-cov ~= 2.5',
38-
'codecov ~= 2.0',
32+
'mock~=2.0',
33+
'nose~=1.3',
34+
'pytest~=3.6',
35+
'pytest-timeout~=1.2',
36+
'pytest-cov~=2.5',
37+
'codecov~=2.0',
3938
'future',
4039
'six'
4140
] + extras_require['serial']
@@ -100,7 +99,7 @@
10099
# see https://www.python.org/dev/peps/pep-0345/#version-specifiers
101100
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3",
102101
install_requires=[
103-
'wrapt ~= 1.10', 'typing', 'windows-curses;platform_system=="Windows"',
102+
'wrapt~= 1.10', 'typing', 'windows-curses;platform_system=="Windows"',
104103
],
105104
extras_require=extras_require,
106105

0 commit comments

Comments
 (0)