DEVX-149: fix: retry ansible-galaxy collection install on transient timeouts

This commit is contained in:
2026-08-07 20:26:52 +00:00
parent 03f057b55a
commit 2669a0ea73
6 changed files with 63 additions and 10 deletions
+2 -2
View File
@@ -74,14 +74,14 @@ Add devx to your `pyproject.toml` dependencies and configure the registry:
```toml
[project]
dependencies = [
"devx>=0.49.2",
"devx>=0.49.3",
]
[tool.pip]
extra-index-url = "https://git.oblachno.oblachno.fyi/api/packages/oblachno-oss/pypi/simple"
```
Pin a specific version if needed: `"devx==0.49.2"` or `"devx>=0.49.2,<0.50"`.
Pin a specific version if needed: `"devx==0.49.3"` or `"devx>=0.49.3,<0.50"`.
### Optional extras
+2 -2
View File
@@ -48,12 +48,12 @@ Add devx to your `pyproject.toml`:
```toml
[project]
dependencies = [
"devx>=0.49.2",
"devx>=0.49.3",
]
[project.optional-dependencies]
dev = [
"devx>=0.49.2",
"devx>=0.49.3",
]
```