Skip to content

Commit 95a6d8a

Browse files
chore: Merge branch 'main' into fix-cloud-sql-env-vars
2 parents 1d53d17 + 72190ce commit 95a6d8a

File tree

128 files changed

+262
-275
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+262
-275
lines changed

.github/sync-repo-settings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ branchProtectionRules:
4545
- "Kokoro CI - Lint"
4646
- "Kokoro CI - Python 2.7 (App Engine Standard Only)"
4747
- "Kokoro CI - Python 3.8"
48-
- "Kokoro CI - Python 3.12"
48+
- "Kokoro CI - Python 3.13"
4949
- "cla/google"
5050
- "snippet-bot check"
5151
# List of explicit permissions to add (additive only)

alloydb/notebooks/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
TEST_CONFIG_OVERRIDE = {
1616
# You can opt out from the test for specific Python versions.
17-
"ignored_versions": ["2.7", "3.7", "3.8", "3.9", "3.11", "3.12"],
17+
"ignored_versions": ["2.7", "3.7", "3.8", "3.9", "3.11", "3.12", "3.13"],
1818
# Old samples are opted out of enforcing Python type hints
1919
# All new samples should feature them
2020
"enforce_type_hints": True,

appengine/flexible/django_cloudsql/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.7", "3.9", "3.10", "3.12"],
25+
"ignored_versions": ["2.7", "3.7", "3.9", "3.10", "3.12", "3.13"],
2626
# An envvar key for determining the project id to use. Change it
2727
# to 'BUILD_SPECIFIC_GCLOUD_PROJECT' if you want to opt in using a
2828
# build specific Cloud project. You can also use your own string

appengine/flexible/django_cloudsql/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Django==5.1.4; python_version >= "3.10"
2-
Django==4.2.17; python_version >= "3.8" and python_version < "3.10"
1+
Django==5.1.5; python_version >= "3.10"
2+
Django==5.1.5; python_version >= "3.8" and python_version < "3.10"
33
gunicorn==22.0.0
44
psycopg2-binary==2.9.10
55
django-environ==0.11.2
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==5.1.4; python_version >= "3.10"
2-
Django==4.2.17; python_version >= "3.8" and python_version < "3.10"
3-
Django==3.2.25; python_version < "3.8"
1+
Django==5.1.5; python_version >= "3.10"
2+
Django==5.1.5; python_version >= "3.8" and python_version < "3.10"
3+
Django==5.1.5; python_version < "3.8"
44
gunicorn==22.0.0

appengine/flexible/numpy/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
2525
# Skipping for Python 3.9 due to pyarrow compilation failure.
26-
"ignored_versions": ["2.7", "3.7", "3.12"],
26+
"ignored_versions": ["2.7", "3.7", "3.12", "3.13"],
2727
# Old samples are opted out of enforcing Python type hints
2828
# All new samples should feature them
2929
"enforce_type_hints": False,

appengine/flexible/scipy/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.7", "3.11", "3.12"],
25+
"ignored_versions": ["2.7", "3.7", "3.11", "3.12", "3.13"],
2626
# Old samples are opted out of enforcing Python type hints
2727
# All new samples should feature them
2828
"enforce_type_hints": False,

appengine/flexible_python37_and_earlier/analytics/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
2525
# Skipping for Python 3.9 due to pyarrow compilation failure.
26-
"ignored_versions": ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12"],
26+
"ignored_versions": ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
2727
# Old samples are opted out of enforcing Python type hints
2828
# All new samples should feature them
2929
"enforce_type_hints": False,

appengine/flexible_python37_and_earlier/datastore/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
2525
# Skipping for Python 3.9 due to pyarrow compilation failure.
26-
"ignored_versions": ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12"],
26+
"ignored_versions": ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
2727
# Old samples are opted out of enforcing Python type hints
2828
# All new samples should feature them
2929
"enforce_type_hints": False,

appengine/flexible_python37_and_earlier/disk/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
2525
# Skipping for Python 3.9 due to pyarrow compilation failure.
26-
"ignored_versions": ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12"],
26+
"ignored_versions": ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"],
2727
# Old samples are opted out of enforcing Python type hints
2828
# All new samples should feature them
2929
"enforce_type_hints": False,

0 commit comments

Comments
 (0)