We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3c5d0 commit b332d5bCopy full SHA for b332d5b
osv/ecosystems/bioconductor.py
@@ -57,6 +57,12 @@ def _enumerate_versions(self,
57
"""Helper method to enumerate versions from a specific URL."""
58
59
versions = []
60
+ # Currently breaking on 3.19,
61
+ # see https://github.com/google/osv.dev/pull/1477/files#r1575458933
62
+ try:
63
+ bioc_versions = bioc_versions.remove('3.19')
64
+ except ValueError:
65
+ pass
66
for version in bioc_versions:
67
response = requests.get(
68
url.format(package=package, bioc_version=version),
0 commit comments