diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-01-21 09:53:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-21 09:53:18 +0000 |
| commit | cf350e761095f03f59bf1458bc2f7f5d7fe9ec5a (patch) | |
| tree | e53a5fe687e7b234122d861563b1d51264875fed | |
| parent | a81b1303544208467235212ff8a39755e88cee7f (diff) | |
| parent | c3441cb149f27d283d51ec4f6cecd6a5052de87a (diff) | |
| download | python-setuptools-git-cf350e761095f03f59bf1458bc2f7f5d7fe9ec5a.tar.gz | |
Merge pull request #3787 from mgorny/dist-info-test
Fix dependency syntax error in test_dist_info
| -rw-r--r-- | setuptools/tests/test_dist_info.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/tests/test_dist_info.py b/setuptools/tests/test_dist_info.py index 45b0d7fb..2ed79076 100644 --- a/setuptools/tests/test_dist_info.py +++ b/setuptools/tests/test_dist_info.py @@ -142,7 +142,8 @@ class TestWheelCompatibility: version = {version} [options] - install_requires = foo>=12; sys_platform != "linux" + install_requires = + foo>=12; sys_platform != "linux" [options.extras_require] test = pytest |
