aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_config.py
diff options
context:
space:
mode:
authorBenoit Pierre <benoit.pierre@gmail.com>2017-07-27 01:45:54 +0200
committerBenoit Pierre <benoit.pierre@gmail.com>2017-08-02 00:06:13 +0200
commit096f3287314549ac423f1c1c443f8aefa0b64b4f (patch)
tree65d43cd6874815dddd32f89f932963702a21bf33 /setuptools/tests/test_config.py
parent28e2625c12f7115c8bcb8c101327328e5007592f (diff)
downloadexternal_python_setuptools-096f3287314549ac423f1c1c443f8aefa0b64b4f.tar.gz
external_python_setuptools-096f3287314549ac423f1c1c443f8aefa0b64b4f.tar.bz2
external_python_setuptools-096f3287314549ac423f1c1c443f8aefa0b64b4f.zip
fix requires handling when using setup.cfg
Diffstat (limited to 'setuptools/tests/test_config.py')
-rw-r--r--setuptools/tests/test_config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/tests/test_config.py b/setuptools/tests/test_config.py
index 8bd2a494..dbabd69e 100644
--- a/setuptools/tests/test_config.py
+++ b/setuptools/tests/test_config.py
@@ -333,7 +333,7 @@ class TestOptions:
])
assert dist.install_requires == ([
'docutils>=0.3',
- 'pack ==1.1, ==1.3',
+ 'pack==1.1,==1.3',
'hey'
])
assert dist.setup_requires == ([
@@ -403,7 +403,7 @@ class TestOptions:
])
assert dist.install_requires == ([
'docutils>=0.3',
- 'pack ==1.1, ==1.3',
+ 'pack==1.1,==1.3',
'hey'
])
assert dist.setup_requires == ([
@@ -508,7 +508,7 @@ class TestOptions:
with get_dist(tmpdir) as dist:
assert dist.extras_require == {
'pdf': ['ReportLab>=1.2', 'RXP'],
- 'rest': ['docutils>=0.3', 'pack ==1.1, ==1.3']
+ 'rest': ['docutils>=0.3', 'pack==1.1,==1.3']
}
def test_entry_points(self, tmpdir):