Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
# exclude gh actions as credentials are needed for tests
".github/workflows",
"README.rst",
"renovate.json",
],
)

Expand Down
9 changes: 8 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,12 @@
"ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml"],
"pip_requirements": {
"fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"]
}
},
"packageRules": [
{
"matchFileNames": ["requirements.txt"],
"matchStrings": ["geoalchemy2 (.*); python_version == '3.9'"],
Comment thread
chalmerlowe marked this conversation as resolved.
Outdated
"allowedVersions": ">= 0.17.1, < 0.18.0"
}
]
}
9 changes: 5 additions & 4 deletions samples/snippets/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
alembic==1.16.4; python_version >= '3.9'
certifi==2025.7.14
charset-normalizer==3.4.2
geoalchemy2==0.17.1
geoalchemy2===0.17.1; python_version == '3.9'
geoalchemy2==0.18.0; python_version >= '3.10'
google-api-core[grpc]==2.25.1
google-auth==2.40.3
google-cloud-bigquery==3.35.0; python_version >= '3.9'
google-cloud-bigquery==3.35.1; python_version >= '3.9'
google-cloud-core==2.4.3
google-crc32c==1.7.1; python_version >= '3.9'
google-resumable-media==2.7.2
googleapis-common-protos==1.70.0
greenlet==3.2.3; python_version >= '3.9'
grpcio==1.73.1; python_version >= '3.9'
grpcio-status==1.73.1; python_version >= '3.9'
grpcio==1.74.0; python_version >= '3.9'
grpcio-status==1.74.0; python_version >= '3.9'
idna==3.10
importlib-resources==6.5.2; python_version >= '3.9'
mako==1.3.10; python_version >= '3.9'
Expand Down