Skip to content

Commit

Permalink
Issue pypa#329: Remove last remnant of custom PyPy tags
Browse files Browse the repository at this point in the history
The resolution of issue pypa#328 removed the custom PyPy tagging
from `get_impl_version_info()`, this just cleans up the check
that forces PyPy to call that even if `py_version_nodot` was
already set.
  • Loading branch information
ncoghlan committed Jan 27, 2020
1 parent 8b23127 commit 87bc129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wheel/pep425tags.py
Expand Up @@ -45,7 +45,7 @@ def get_abbr_impl():
def get_impl_ver():
"""Return implementation version."""
impl_ver = get_config_var("py_version_nodot")
if not impl_ver or get_abbr_impl() == 'pp':
if not impl_ver:
impl_ver = ''.join(map(str, get_impl_version_info()))
return impl_ver

Expand Down

0 comments on commit 87bc129

Please sign in to comment.