Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/google-cloud-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: google-shopping-css-v0.1.12
Choose a base ref
...
head repository: googleapis/google-cloud-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: google-shopping-css-v0.1.13
Choose a head ref
Loading
Showing 4,771 changed files with 684,802 additions and 48,414 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
@@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-python-mono-repo:latest
digest: sha256:db9568404b062e3bcf060fb7db09ca9aa51275d187b0f4ccd5f0071e82e4521a
digest: sha256:16341f2811634da310cbb106ce4af18ed6394c964f4f2f1bae4dd321566ddaf5
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10.0
python-version: "3.10"
- name: Install script dependencies
run: pip3 install -r requirements.txt
working-directory: ./scripts
10 changes: 6 additions & 4 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -49,11 +49,13 @@ jobs:
with:
name: coverage-artifact-${{ '{{' }} matrix.python {{ '}}' }}
path: .coverage-${{ matrix.python }}
prerelease:
unit-extended:
name: ${{ matrix.option }}
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.13']
python: ["3.13"]
option: ["prerelease", "core_deps_from_source"]
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -70,10 +72,10 @@ jobs:
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install nox
- name: Run prerelease tests
- name: Run ${{ matrix.option }} tests
env:
BUILD_TYPE: presubmit
TEST_TYPE: prerelease
TEST_TYPE: ${{ matrix.option }}
PY_VERSION: ${{ matrix.python }}
run: |
ci/run_conditional_tests.sh
4 changes: 4 additions & 0 deletions .kokoro/docker/docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -81,4 +81,8 @@ RUN wget -O /tmp/get-pip.py 'https://bootstrap.pypa.io/get-pip.py' \
# Test pip
RUN python3.10 -m pip

# Install build requirements
COPY requirements.txt /requirements.txt
RUN python3.10 -m pip install --require-hashes -r requirements.txt

CMD ["python3.10"]
2 changes: 2 additions & 0 deletions .kokoro/docker/docs/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nox
gcp-docuploader
Loading