Skip to content

Commit ce7b742

Browse files
dmitriplotnikovcopybara-github
authored andcommitted
Add support for Python 3.10
PiperOrigin-RevId: 968634685
1 parent b429740 commit ce7b742

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

release/kokoro/release_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
pip install -U keyring keyrings.google-artifactregistry-auth twine cibuildwheel
1212

1313
echo "Installing CPython Mac Frameworks..."
14-
for pyver in "3.11.9" "3.12.4" "3.13.0" "3.14.3"; do
14+
for pyver in "3.10.11" "3.11.9" "3.12.4" "3.13.0" "3.14.3"; do
1515
echo "Downloading and installing Python ${pyver}..."
1616
curl -LO "https://www.python.org/ftp/python/${pyver}/python-${pyver}-macos11.pkg"
1717
sudo installer -pkg "python-${pyver}-macos11.pkg" -target /

release/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name = "cel-expr-python"
1717
# $VERSION is replaced with the desired version in build_wheel.sh.
1818
version = "$VERSION"
1919
description = "The CEL Python runtime"
20-
requires-python = ">=3.11"
20+
requires-python = ">=3.10"
2121
classifiers = [
2222
"Topic :: Software Development :: Interpreters",
2323
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -38,7 +38,7 @@ where = ["."]
3838
exclude = ["codelab*", "conformance*", "custom_ext*", "release*", "testing*", "wheelhouse*"]
3939

4040
[tool.cibuildwheel]
41-
build = "cp311-* cp312-* cp313-* cp314-*"
41+
build = "cp310-* cp311-* cp312-* cp313-* cp314-*"
4242
skip = "*musllinux* *win32* *i686*"
4343
test-command = "python {project}/cel_basic_test.py"
4444
build-verbosity = 1

0 commit comments

Comments
 (0)