Skip to content

Commit 384a920

Browse files
committed
python: require Python 3.9+
The module has been building wheels for Python 3.9 and later, but setup.py still declared a minimum of 3.8. Update the metadata to require 3.9. Fixes #559. Change-Id: Id5d06a006f5080529b69bfe163bf629e36b15c34 Reviewed-on: https://code-review.googlesource.com/c/re2/+/63850 Reviewed-by: Alan Donovan <adonovan@google.com>
1 parent c2c6a2e commit 384a920

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,11 @@ def include_dirs():
144144
'Intended Audience :: Developers',
145145
'License :: OSI Approved :: BSD License',
146146
'Programming Language :: C++',
147-
'Programming Language :: Python :: 3.8',
147+
'Programming Language :: Python :: 3.9',
148148
],
149149
options=options(),
150150
cmdclass={'build_ext': BuildExt},
151-
python_requires='~=3.8',
151+
python_requires='~=3.9',
152152
)
153153
except:
154154
raise

0 commit comments

Comments
 (0)