Skip to content

Commit dff5153

Browse files
authored
fix(workers): use vanir release candidate version (#4079)
Grab vanir from the test PyPI repository to un-break our tests. Once it's released properly we should change it to get it from PyPI proper.
1 parent 120201c commit dff5153

File tree

2 files changed

+71
-43
lines changed

2 files changed

+71
-43
lines changed

gcp/workers/worker/poetry.lock

Lines changed: 62 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gcp/workers/worker/pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies = [
1111
"redis==5.3.1",
1212
"packageurl-python==0.17.5",
1313
"pygit2==1.18.2",
14-
"requests==2.32.4",
14+
"requests==2.32.5",
1515
"jsonschema==4.25.1",
16-
"vanir==1.0.1",
16+
"vanir==1.0.2rc1",
1717
"osv",
1818
]
1919

@@ -22,11 +22,18 @@ package-mode = false
2222

2323
[tool.poetry.dependencies]
2424
osv = { path = "../../../", develop = true }
25+
vanir = { source = "test-pypi" }
2526

2627
[tool.poetry.group.dev.dependencies]
2728
yapf = "*"
2829
pylint = "*"
2930

31+
32+
[[tool.poetry.source]]
33+
name = "test-pypi"
34+
url = "https://test.pypi.org/simple/"
35+
priority = "explicit"
36+
3037
[build-system]
3138
requires = ["poetry-core>=2.0.0"]
3239
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)