Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 6f7f9c6

Browse files
committed
add checks to avoid overwriting dependency when using python 3.9
1 parent fddf0d4 commit 6f7f9c6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

owlbot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
# exclude gh actions as credentials are needed for tests
5454
".github/workflows",
5555
"README.rst",
56+
"renovate.json",
5657
],
5758
)
5859

renovate.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,12 @@
88
"ignorePaths": [".pre-commit-config.yaml", ".kokoro/requirements.txt", "setup.py", ".github/workflows/unittest.yml"],
99
"pip_requirements": {
1010
"fileMatch": ["requirements-test.txt", "samples/[\\S/]*constraints.txt", "samples/[\\S/]*constraints-test.txt"]
11-
}
11+
},
12+
"packageRules": [
13+
{
14+
"matchFileNames": ["requirements.txt"],
15+
"matchStrings": ["geoalchemy2 (.*); python_version == '3.9'"],
16+
"allowedVersions": ">= 0.17.1, < 0.18.0"
17+
}
18+
]
1219
}

0 commit comments

Comments
 (0)