Skip to content

Commit

Permalink
MAINT: Update setup.py for Python 3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Aug 18, 2022
1 parent 70c9c7f commit a6894ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -66,7 +66,7 @@
VERSION = '{}.{}.{}'.format(MAJOR, MINOR, MICRO)

# The first version not in the `Programming Language :: Python :: ...` classifiers above
if sys.version_info >= (3, 11):
if sys.version_info >= (3, 12):
fmt = "NumPy {} may not yet support Python {}.{}."
warnings.warn(
fmt.format(VERSION, *sys.version_info[:2]),
Expand Down Expand Up @@ -112,6 +112,7 @@
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
Expand Down

0 comments on commit a6894ab

Please sign in to comment.