summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2020-10-04 14:52:21 +0300
committerGitHub <noreply@github.com>2020-10-04 14:52:21 +0300
commita30c410b1743e38ae32501f199a643629708cbd7 (patch)
tree9b5547a48b866f62dc0ea50ba361c9d65284e752 /setup.py
parentc549dbb47d8b4e2d9ee6572ddaa78e494ec41238 (diff)
downloadnumpy-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-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index e4fe91fae..ffa3107af 100755
--- a/setup.py
+++ b/setup.py
@@ -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,
)