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
{{ message }}
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: CONTRIBUTING.rst
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ In order to add a feature:
22
22
documentation.
23
23
24
24
- The feature must work fully on the following CPython versions:
25
-
3.10, 3.11, 3.12and 3.13 on both UNIX and Windows.
25
+
3.10, 3.11, 3.12, 3.13 and 3.14 on both UNIX and Windows.
26
26
27
27
- The feature must not add unnecessary dependencies (where
28
28
"unnecessary" is of course subjective, but new dependencies should
@@ -72,7 +72,7 @@ We use `nox <https://nox.readthedocs.io/en/latest/>`__ to instrument our tests.
72
72
73
73
- To run a single unit test::
74
74
75
-
$ nox -s unit-3.13 -- -k <name of test>
75
+
$ nox -s unit-3.14 -- -k <name of test>
76
76
77
77
78
78
.. note::
@@ -143,12 +143,12 @@ Running System Tests
143
143
$ nox -s system
144
144
145
145
# Run a single system test
146
-
$ nox -s system-3.13 -- -k <name of test>
146
+
$ nox -s system-3.14 -- -k <name of test>
147
147
148
148
149
149
.. note::
150
150
151
-
System tests are only configured to run under Python 3.10, 3.11, 3.12 and 3.13.
151
+
System tests are only configured to run under Python 3.10, 3.12 and 3.14.
152
152
For expediency, we do not run them in older versions of Python 3.
153
153
154
154
This alone will not run the tests. You'll need to change some local
Copy file name to clipboardExpand all lines: bigframes/core/blocks.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -657,7 +657,6 @@ def _get_sampling_option(
657
657
sampling_method: Optional[str] =None,
658
658
random_state: Optional[int] =None,
659
659
) ->sampling_options.SamplingOptions:
660
-
661
660
if (sampling_methodisnotNone) and (sampling_methodnotin_SAMPLING_METHODS):
662
661
raiseNotImplementedError(
663
662
f"The downsampling method {sampling_method} is not implemented, "
@@ -700,7 +699,8 @@ def to_pandas_batches(
700
699
"""Download results one message at a time.
701
700
702
701
page_size and max_results determine the size and number of batches,
703
-
see https://cloud.google.com/python/docs/reference/bigquery/latest/google.cloud.bigquery.job.QueryJob#google_cloud_bigquery_job_QueryJob_result"""
702
+
see https://cloud.google.com/python/docs/reference/bigquery/latest/google.cloud.bigquery.job.QueryJob#google_cloud_bigquery_job_QueryJob_result
0 commit comments