Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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'"],
"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
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
)

from sqlalchemy.testing.suite.test_reflection import (
BizarroCharacterFKResolutionTest,
BizarroCharacterTest,
ComponentReflectionTest,
ComponentReflectionTestExtra,
HasTableTest,
)

Expand Down Expand Up @@ -615,6 +616,7 @@ def test_no_results_for_non_returning_insert(cls):
pass


del ComponentReflectionTestExtra # Multiple tests re: CHECK CONSTRAINTS, etc which
del ComponentReflectionTest # Multiple tests re: CHECK CONSTRAINTS, etc which
# BQ does not support
# class ComponentReflectionTest(_ComponentReflectionTest):
Expand All @@ -629,7 +631,7 @@ def test_no_results_for_non_returning_insert(cls):
# pass

del ArrayTest # only appears to apply to postgresql
del BizarroCharacterFKResolutionTest
del BizarroCharacterTest
del HasTableTest.test_has_table_cache # TODO confirm whether BQ has table caching
del DistinctOnTest # expects unquoted table names.
del HasIndexTest # BQ doesn't do the indexes that SQLA is loooking for.
Expand Down