diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-03-27 15:10:08 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-03-27 15:10:08 -0400 |
| commit | 8270cfa851b2cf42345639a3bd0466693dfdced2 (patch) | |
| tree | 13704464292a481b6e258475c0328f7ae5f749ad | |
| parent | 55da5cbe37477653ea68f9fbaf68b526b804116d (diff) | |
| download | python-setuptools-git-8270cfa851b2cf42345639a3bd0466693dfdced2.tar.gz | |
Get the version logic correct.
| -rw-r--r-- | distutils/py39compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils/py39compat.py b/distutils/py39compat.py index 0552db44..d68cbce7 100644 --- a/distutils/py39compat.py +++ b/distutils/py39compat.py @@ -6,7 +6,7 @@ def ext_suffix(vars): """ Ensure vars contains 'EXT_SUFFIX'. pypa/distutils#130 """ - if sys.version_info < (3, 10): + if sys.version_info > (3, 10): return if platform.system() != 'Windows': return |
