diff options
| author | Paul Ganssle <pganssle@users.noreply.github.com> | 2018-03-26 08:18:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-26 08:18:06 -0400 |
| commit | 7d56dc12c196dc48fe30918fea7a6aac90182c89 (patch) | |
| tree | 9aa8dccbb0f90985320abb03900d494d2da13d74 | |
| parent | 91b2c138c6ec84b55e77d8658bcbe91e28205818 (diff) | |
| parent | e6b7f8d868b2f3fd5ac2015055e5414f489d418b (diff) | |
| download | python-setuptools-git-7d56dc12c196dc48fe30918fea7a6aac90182c89.tar.gz | |
Merge pull request #1308 from stephenfin/issue/1307
tests: Add regression test for #1081
| -rw-r--r-- | setuptools/tests/test_egg_info.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index d2211671..2a070deb 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -245,6 +245,18 @@ class TestEggInfo(object): ''', ''' + install_requires_ordered + + install_requires=["fake-factory>=1.12.3,!=2.0"] + + [options] + install_requires = + fake-factory>=1.12.3,!=2.0 + + fake-factory!=2.0,>=1.12.3 + ''', + + ''' install_requires_with_marker install_requires=["barbazquux;{mismatch_marker}"], |
