Skip to content

Commit

Permalink
Allow core/3.55+.
Browse files Browse the repository at this point in the history
fixes #3620.
  • Loading branch information
ggainey committed Jun 18, 2024
1 parent 80cd799 commit a64ee42
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES/3620.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Allow installation with pulpcore/3.55.
6 changes: 3 additions & 3 deletions pulp_rpm/tests/functional/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,13 @@ def rpm_kickstart_repo_immediate(init_and_sync):


@pytest.fixture(scope="session")
def rpm_metadata_signing_service(signing_service_api_client):
results = signing_service_api_client.list(name="sign-metadata")
def rpm_metadata_signing_service(pulpcore_bindings):
results = pulpcore_bindings.SigningServicesApi.list(name="sign-metadata")
signing_service = None
if results.count == 0:
result = init_signed_repo_configuration()
if result.returncode == 0:
results = signing_service_api_client.list(name="sign-metadata")
results = pulpcore_bindings.SigningServicesApi.list(name="sign-metadata")
if results.count == 1:
signing_service = results.results[0]

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ django_readonly_field~=1.1.1
jsonschema>=4.6,<5.0
libcomps>=0.1.20.post1,<0.2
productmd~=1.33.0
pulpcore>=3.44.1,<3.55
pulpcore>=3.44.1,<3.70
solv~=0.7.21
aiohttp_xmlrpc~=1.5.0
importlib-resources~=6.4.0

0 comments on commit a64ee42

Please sign in to comment.