Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/import.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.2']

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.2']

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion google/genai/mypy.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[mypy]
exclude = (tests/|_test_api_client\.py)
plugins = pydantic.mypy
; we are ignoring 'unused-ignore' because we run mypy on Python 3.9 - 3.13 and
; we are ignoring 'unused-ignore' because we run mypy on Python 3.9 - 3.14 and
; some errors in _automatic_function_calling_util.py only apply in 3.10+
; 'import-not-found' and 'import-untyped' are environment specific
disable_error_code = import-not-found, import-untyped, unused-ignore
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down Expand Up @@ -50,4 +51,4 @@ packages = [
include-package-data = true

[tools.setuptools.package_data]
"google.genai" = ["py.typed"]
"google.genai" = ["py.typed"]
Loading