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
3 changes: 2 additions & 1 deletion minimum_versions/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from dataclasses import dataclass, field

from rattler import Gateway, Version
from rattler.networking import Client
from tlz.functoolz import curry, pipe
from tlz.itertoolz import concat, groupby

Expand Down Expand Up @@ -47,7 +48,7 @@ def deduplicate(releases):


def fetch_releases(channels, platforms, all_packages):
gateway = Gateway()
gateway = Gateway(client=Client.default_client(timeout=120))

query = gateway.query(channels, platforms, all_packages, recursive=False)
records = asyncio.run(query)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
"rich-click>=1.9.0",
"pyyaml>=6.0.0",
"cytoolz>=1.1.0",
"py-rattler>=0.20.0",
"py-rattler>=0.25.0",
"python-dateutil>=2.9.0",
"jsonschema>=4.25.0",
]
Expand Down