Paul Wankadia has uploaded this change for review.
Python 3.6 will be EOL as of 2021-12-23.
Stop producing wheels for Python 3.6.
Start producing wheels for Python 3.10.
Specify Python 3.7 in metadata.
Change-Id: I4ee3afe7609622a887c63d344274b0ddc12ffc19
---
M python/pypi.sh
M python/setup.py
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/python/pypi.sh b/python/pypi.sh
index a4fc4e0..7f617a9 100755
--- a/python/pypi.sh
+++ b/python/pypi.sh
@@ -10,10 +10,10 @@
)
TAGS=(
- 'cp36-cp36m'
'cp37-cp37m'
'cp38-cp38'
'cp39-cp39'
+ 'cp310-cp310'
)
SRCDIR=$(readlink --canonicalize $(dirname $0))
diff --git a/python/setup.py b/python/setup.py
index 0482d68..b535113 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -59,9 +59,9 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: C++',
- 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
],
ext_modules=[ext_module],
py_modules=['re2'],
- python_requires='~=3.6',
+ python_requires='~=3.7',
)
To view, visit change 59510. To unsubscribe, or for help writing mail filters, visit settings.
Attention is currently required from: Randall Bosetti, Paul Wankadia.
Patch set 1:Code-Review +1
Attention is currently required from: Randall Bosetti.
Patch set 1:Code-Review +2
Paul Wankadia submitted this change.
Python 3.6 will be EOL as of 2021-12-23.
Stop producing wheels for Python 3.6.
Start producing wheels for Python 3.10.
Specify Python 3.7 in metadata.
Change-Id: I4ee3afe7609622a887c63d344274b0ddc12ffc19
Reviewed-on: https://code-review.googlesource.com/c/re2/+/59510
Reviewed-by: Justin Lebar <jle...@google.com>
Reviewed-by: Paul Wankadia <jun...@google.com>
---
M python/pypi.sh
M python/setup.py
2 files changed, 19 insertions(+), 3 deletions(-)
To view, visit change 59510. To unsubscribe, or for help writing mail filters, visit settings.