diff options
author | Matthew Suozzo <msuozzo@google.com> | 2021-10-30 12:09:44 -0400 |
---|---|---|
committer | Matthew Suozzo <msuozzo@google.com> | 2021-10-30 12:09:44 -0400 |
commit | a2f2c988545d9cfbbb8b5e7e7a6a030f3db692ee (patch) | |
tree | 2e016728af1069dbd53e14d4f94c2b8f59d0ee11 /setuptools/wheel.py | |
parent | b42ec23633cf81aa9e50f6e44d6ff33fd796293b (diff) | |
download | python-setuptools-git-a2f2c988545d9cfbbb8b5e7e7a6a030f3db692ee.tar.gz |
Revert inner function name change.
Diffstat (limited to 'setuptools/wheel.py')
-rw-r--r-- | setuptools/wheel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/wheel.py b/setuptools/wheel.py index 722264f6..9819e8b9 100644 --- a/setuptools/wheel.py +++ b/setuptools/wheel.py @@ -133,7 +133,7 @@ class Wheel: # Note: Evaluate and strip markers now, # as it's difficult to convert back from the syntax: # foobar; "linux" in sys_platform and extra == 'test' - def to_raw(req): + def raw_req(req): req.marker = None return str(req) install_requires = list(map(raw_req, dist.requires())) |