Skip to content
Closed
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
14 changes: 13 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,17 @@
"/requirements.openstack-image-manager.txt/",
"/requirements.txt/"
]
}
},
"packageRules": [
{
"description": "openstacksdk is compat-coupled to the galaxy-pinned openstack.cloud ansible collection (osism/release base.yml). Collection 2.5.0 breaks on sdk >=4.11 ('module openstack has no attribute version'), failing every openstack.cloud module in the manager container. Cap the sdk (both requirements.txt and Pipfile); raise this only together with an openstack.cloud bump in osism/release.",
"matchPackageNames": ["openstacksdk"],
"allowedVersions": "<4.11"
},
{
"description": "python-openstackclient >=10 requires openstacksdk >=4.16, which conflicts with the openstacksdk cap above. Keep it on 9.x until the sdk cap is lifted.",
"matchPackageNames": ["python-openstackclient"],
"allowedVersions": "<10"
}
]
}
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ kombu = "==5.6.2"
kubernetes = "==36.0.3"
loguru = "==0.7.3"
nbcli = "0.10.0.dev2"
openstacksdk = "==4.17.0"
openstacksdk = "==4.10.0"
paramiko = "==5.0.0"
pottery = "==3.0.1"
prompt-toolkit = "==3.0.52"
Expand Down
35 changes: 21 additions & 14 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ kombu==5.6.2
kubernetes==36.0.3
loguru==0.7.3
nbcli==0.10.0.dev2
openstacksdk==4.17.0
openstacksdk==4.10.0
paramiko==5.0.0
pottery==3.0.1
prompt-toolkit==3.0.52
pynetbox==7.8.0
pytest-testinfra==10.2.2
python-dateutil==2.9.0.post0
python-openstackclient==10.2.1
python-openstackclient==9.0.0
redfish==3.3.6
setuptools==83.0.0
sqlmodel==0.0.39
Expand Down