Skip to content

Commit c246650

Browse files
Filter out python 3.10 google.api_core future warnings
1 parent b8bad56 commit c246650

4 files changed

Lines changed: 12 additions & 0 deletions

File tree

tilebox-datasets/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ minversion = "6.0"
6565
testpaths = ["tests"]
6666
addopts = "-Wall -Werror --import-mode importlib"
6767
asyncio_default_fixture_loop_scope = "function"
68+
filterwarnings = [
69+
"ignore:.*stop supporting in new releases of google.api_core once.*:FutureWarning",
70+
]
6871

6972

7073
[build-system]

tilebox-grpc/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ minversion = "6.0"
5353
testpaths = ["tests"]
5454
addopts = "-Wall -Werror --import-mode importlib"
5555
asyncio_default_fixture_loop_scope = "function"
56+
filterwarnings = [
57+
"ignore:.*stop supporting in new releases of google.api_core once.*:FutureWarning",
58+
]
5659

5760
[build-system]
5861
requires = ["hatchling", "uv-dynamic-versioning"]

tilebox-storage/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ minversion = "6.0"
5353
testpaths = ["tests"]
5454
addopts = "-Wall -Werror --import-mode importlib"
5555
asyncio_default_fixture_loop_scope = "function"
56+
filterwarnings = [
57+
"ignore:.*stop supporting in new releases of google.api_core once.*:FutureWarning",
58+
]
5659

5760
[build-system]
5861
requires = ["hatchling", "uv-dynamic-versioning"]

tilebox-workflows/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ minversion = "6.0"
5555
testpaths = ["tests"]
5656
addopts = "-Wall -Werror --import-mode importlib"
5757
asyncio_default_fixture_loop_scope = "function"
58+
filterwarnings = [
59+
"ignore:.*stop supporting in new releases of google.api_core once.*:FutureWarning",
60+
]
5861

5962
[build-system]
6063
requires = ["hatchling", "uv-dynamic-versioning"]

0 commit comments

Comments
 (0)