Prepare to release google-re2 1.1.

Drop support for Python 3.7.
Add support for macOS 13.
Add support for Windows 32-bit.
Use `delvewheel` on Windows.

Fixes #438.

Change-Id: I003e808089abe5bb5dfa77521c1cd9d18f749bfb
Reviewed-on: https://code-review.googlesource.com/c/re2/+/61570
Reviewed-by: Paul Wankadia <junyer@google.com>
Reviewed-by: Alex Chernyakhovsky <achernya@google.com>
This commit is contained in:
Paul Wankadia
2023-07-28 05:16:02 +00:00
parent e66463312e
commit 4c70d0f310
2 changed files with 13 additions and 12 deletions

View File

@@ -84,7 +84,7 @@ ext_module = setuptools.Extension(
setuptools.setup(
name='google-re2',
version='1.0',
version='1.1',
description='RE2 Python bindings',
long_description=long_description,
long_description_content_type='text/plain',
@@ -98,8 +98,8 @@ setuptools.setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: C++',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
cmdclass={'build_ext': BuildExt},
python_requires='~=3.7',
python_requires='~=3.8',
)