diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-12-20 23:26:07 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-12-20 23:26:07 -0500 |
| commit | 9e3806e5a557d3041dacb34801aed3e4a1dc654e (patch) | |
| tree | 8f808034433e76ca3e2b2efc73d2f47c9b803f0f | |
| parent | 8a99cc4660582b651d91421d4f47cb988a355741 (diff) | |
| download | python-setuptools-git-9e3806e5a557d3041dacb34801aed3e4a1dc654e.tar.gz | |
Fix syntax in test_build_meta, version should not have quotes. Bug was masked by LegacyVersion parsing.
| -rw-r--r-- | setuptools/tests/test_build_meta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_build_meta.py b/setuptools/tests/test_build_meta.py index 5462b26a..6d3a997e 100644 --- a/setuptools/tests/test_build_meta.py +++ b/setuptools/tests/test_build_meta.py @@ -108,7 +108,7 @@ defns = [ 'setup.cfg': DALS(""" [metadata] name = foo - version='0.0.0' + version = 0.0.0 [options] py_modules=hello |
