diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2020-10-04 14:52:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 14:52:21 +0300 |
commit | a30c410b1743e38ae32501f199a643629708cbd7 (patch) | |
tree | 9b5547a48b866f62dc0ea50ba361c9d65284e752 /setup.py | |
parent | c549dbb47d8b4e2d9ee6572ddaa78e494ec41238 (diff) | |
download | numpy-a30c410b1743e38ae32501f199a643629708cbd7.tar.gz |
Clarify warning, it might work before official support
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # keep this consistent with the `Programming Language :: Python :: ...` classifiers above if sys.version_info >= (3, 9): warnings.warn( - f"NumPy {VERSION} does not support Python " + f"NumPy {VERSION} may not yet support Python " f"{sys.version_info.major}.{sys.version_info.minor}.", RuntimeWarning, ) |