You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deps: Add support for Python 3.13 for everything but remote functions (#1307)
* chore: Add support for Python 3.13
* update contibuting.rst with the the new version
* skip sklearn import
* skip api coverage tests because of sklearn NameError
* skip remote function tests
* skip all remote function tests and doctests
* update doctest python version to 3.12 in noxfile
* Update noxfile.py
* fix the system_pre-release error
* skip remote functions notebooks on 3.13 tests
* 🦉 Updates from OwlBot post-processor
See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
---------
Co-authored-by: Tim Sweña (Swast) <swast@google.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: notebooks/getting_started/getting_started_bq_dataframes.ipynb
+14
Original file line number
Diff line number
Diff line change
@@ -1448,6 +1448,20 @@
1448
1448
"Running your own Python functions (or being able to bring your packages) and using them at scale is a challenge many data scientists face. BigQuery DataFrames makes it easy to deploy [remote functions](https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.pandas#bigframes_pandas_remote_function) that run scalar Python functions at BigQuery scale. These functions are persisted as [BigQuery remote functions](https://cloud.google.com/bigquery/docs/remote-functions) that you can then re-use."
1449
1449
]
1450
1450
},
1451
+
{
1452
+
"cell_type": "code",
1453
+
"execution_count": null,
1454
+
"metadata": {},
1455
+
"outputs": [],
1456
+
"source": [
1457
+
"import sys\n",
1458
+
"\n",
1459
+
"# Python 3.13 is not yet a supported runtime for remote functions.\n",
1460
+
"# See: https://cloud.google.com/functions/docs/runtime-support#python for the supported runtimes.\n",
0 commit comments