Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Updating .gitignore for JetBrains.#2311

Merged
dhermes merged 1 commit into
googleapis:mastergoogleapis/google-cloud-python:masterfrom
dhermes:ignore-jetbrains-gitdhermes/google-cloud-python:ignore-jetbrains-gitCopy head branch name to clipboard
Sep 13, 2016
Merged

Updating .gitignore for JetBrains.#2311
dhermes merged 1 commit into
googleapis:mastergoogleapis/google-cloud-python:masterfrom
dhermes:ignore-jetbrains-gitdhermes/google-cloud-python:ignore-jetbrains-gitCopy head branch name to clipboard

Conversation

@dhermes

@dhermes dhermes commented Sep 13, 2016

Copy link
Copy Markdown
Contributor

Also removing the _build_rtd directory that we no longer use.

H/T to @Ofekmeister for pointing out that we don't .gitignore the JetBrains config directory

Also removing the _build_rtd directory that we no longer use.
@googlebot googlebot added the cla: yes This human has signed the Contributor License Agreement. label Sep 13, 2016
@daspecster

Copy link
Copy Markdown
Contributor

LGTM

@dhermes

dhermes commented Sep 13, 2016

Copy link
Copy Markdown
Contributor Author

Hey look Travis decided to be fast!

@dhermes dhermes merged commit 3ab8459 into googleapis:master Sep 13, 2016
@dhermes dhermes deleted the ignore-jetbrains-git branch September 13, 2016 18:11
@dhermes dhermes mentioned this pull request Sep 19, 2016
parthea pushed a commit that referenced this pull request Nov 24, 2025
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Victor Chudnovsky <vchudnov@google.com>
parthea pushed a commit that referenced this pull request Mar 2, 2026
PR created by the Librarian CLI to initialize a release. Merging this PR
will auto trigger a release.

Librarian Version: v0.7.0
Language Image:
us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:c8612d3fffb3f6a32353b2d1abd16b61e87811866f7ec9d65b59b02eb452a620
<details><summary>google-cloud-bigquery: 3.39.0</summary>

##
[3.39.0](googleapis/python-bigquery@v3.38.0...v3.39.0)
(2025-12-12)

### Features

* adds support for Python runtime 3.14 (#2322)
([6065e14c](googleapis/python-bigquery@6065e14c))

* Add ExternalRuntimeOptions to BigQuery routine (#2311)
([fa76e310](googleapis/python-bigquery@fa76e310))

### Bug Fixes

* remove ambiguous error codes from query retries (#2308)
([8bbd3d01](googleapis/python-bigquery@8bbd3d01))

* include `io.Base` in the `PathType` (#2323)
([b11e09cb](googleapis/python-bigquery@b11e09cb))

* honor custom `retry` in `job.result()` (#2302)
([e118b029](googleapis/python-bigquery@e118b029))

### Documentation

* remove experimental annotations from GA features (#2303)
([1f1f9d41](googleapis/python-bigquery@1f1f9d41))

</details>

Co-authored-by: Daniel Sanche <d.sanche14@gmail.com>
parthea pushed a commit that referenced this pull request Mar 6, 2026
* feat: Add ExternalRuntimeOptions to BigQuery routine

This change introduces the `ExternalRuntimeOptions` class to the
`google.cloud.bigquery.routine` module, allowing users to configure
runtime options for external routines.

Key changes:
- Created the `ExternalRuntimeOptions` class with setters and getters for
  `container_memory`, `container_cpu`, `runtime_connection`,
  `max_batching_rows`, and `runtime_version`.
- Updated the `Routine` class to include an `external_runtime_options`
  property that accepts an `ExternalRuntimeOptions` object.
- Added comprehensive unit tests for the new class and its integration
  with the `Routine` class, including tests for both valid and invalid
  input values.

* Update google/cloud/bigquery/routine/routine.py

* feat: Add ExternalRuntimeOptions to BigQuery routine

This change introduces the `ExternalRuntimeOptions` class to the
`google.cloud.bigquery.routine` module, allowing users to configure
runtime options for external routines.

Key changes:
- Created the `ExternalRuntimeOptions` class with setters and getters for
  `container_memory`, `container_cpu`, `runtime_connection`,
  `max_batching_rows`, and `runtime_version`.
- Updated the `Routine` class to include an `external_runtime_options`
  property that accepts an `ExternalRuntimeOptions` object.
- Added comprehensive unit tests for the new class and its integration
  with the `Routine` class, including tests for both valid and invalid
  input values.

* feat: Add ExternalRuntimeOptions to BigQuery routine

This change introduces the `ExternalRuntimeOptions` class to the
`google.cloud.bigquery.routine` module, allowing users to configure
runtime options for external routines.

Key changes:
- Created the `ExternalRuntimeOptions` class with setters and getters for
  `container_memory`, `container_cpu`, `runtime_connection`,
  `max_batching_rows`, and `runtime_version`.
- Updated the `Routine` class to include an `external_runtime_options`
  property that accepts an `ExternalRuntimeOptions` object.
- Added comprehensive unit tests for the new class and its integration
  with the `Routine` class, including tests for both valid and invalid
  input values.
- Added additional tests to improve code coverage based on feedback.

* feat: Add ExternalRuntimeOptions to BigQuery routine

This change introduces the `ExternalRuntimeOptions` class to the
`google.cloud.bigquery.routine` module, allowing users to configure
runtime options for external routines.

Key changes:
- Created the `ExternalRuntimeOptions` class with setters and getters for
  `container_memory`, `container_cpu`, `runtime_connection`,
  `max_batching_rows`, and `runtime_version`.
- Updated the `Routine` class to include an `external_runtime_options`
  property that accepts an `ExternalRuntimeOptions` object.
- Added comprehensive unit tests for the new class and its integration
  with the `Routine` class, including tests for both valid and invalid
  input values.
- Added additional tests to improve code coverage based on feedback.
- Addressed PyType errors by using helper functions for type conversion.

* Update tests/unit/routine/test_external_runtime_options.py

* feat: Add ExternalRuntimeOptions to BigQuery routine

This change introduces the `ExternalRuntimeOptions` class to the
`google.cloud.bigquery.routine` module, allowing users to configure
runtime options for external routines.

Key changes:
- Created the `ExternalRuntimeOptions` class with setters and getters for
  `container_memory`, `container_cpu`, `runtime_connection`,
  `max_batching_rows`, and `runtime_version`.
- Updated the `Routine` class to include an `external_runtime_options`
  property that accepts an `ExternalRuntimeOptions` object.
- Added comprehensive unit tests for the new class and its integration
  with the `Routine` class, including tests for both valid and invalid
  input values.
- Added additional tests to improve code coverage based on feedback.
- Addressed PyType errors by using helper functions for type conversion.
- Addressed formatting nits from code review.

---------

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: Chalmer Lowe <chalmerlowe@google.com>
Co-authored-by: Lingqing Gan <lingqing.gan@gmail.com>
parthea pushed a commit that referenced this pull request Apr 1, 2026
This PR introduces the single column display for anywidget mode.

A screenshot of single index column display is here:
screen/6VLA4Nk68TsYczV

Fixes #<459515995> 🦕
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cla: yes This human has signed the Contributor License Agreement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants

Morty Proxy This is a proxified and sanitized view of the page, visit original site.