Skip to content

Commit

Permalink
Bump depedencies versions
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Jan 9, 2024
1 parent 6ec2096 commit 89c1d06
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 14 deletions.
2 changes: 0 additions & 2 deletions pulpcore/app/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@


class PulpRemoteUserAuthentication(RemoteUserAuthentication):

header = settings.REMOTE_USER_ENVIRON_NAME


class PulpNoCreateRemoteUserBackend(RemoteUserBackend):

create_unknown_user = False # Configure RemoteUserBackend to not create users
1 change: 0 additions & 1 deletion pulpcore/app/management/commands/datarepair-2327.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def add_arguments(self, parser):
)

def handle(self, *args, **options):

dry_run = options["dry_run"]
fields = ("username", "password", "proxy_username", "proxy_password", "client_key")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ def _report(self, allowed_checksums):
self._show_immediate_content(forbidden_checksums)

def handle(self, *args, **options):

if options["report"]:
self._report(options["checksums"])
return
Expand Down
1 change: 0 additions & 1 deletion pulpcore/app/serializers/orphans.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@


class OrphansCleanupSerializer(serializers.Serializer, ValidateFieldsMixin):

content_hrefs = fields.ListField(
required=False,
help_text=_("Will delete specified content and associated Artifacts if they are orphans."),
Expand Down
2 changes: 0 additions & 2 deletions pulpcore/app/serializers/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


class ProgressReportSerializer(ModelSerializer):

message = serializers.CharField(
help_text=_("The message shown to the user for the progress report."), read_only=True
)
Expand Down Expand Up @@ -41,7 +40,6 @@ class Meta:


class GroupProgressReportSerializer(ModelSerializer):

message = serializers.CharField(
help_text=_("The message shown to the user for the group progress report."), read_only=True
)
Expand Down
2 changes: 0 additions & 2 deletions pulpcore/app/serializers/publication.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ class Meta:


class RBACContentGuardSerializer(ContentGuardSerializer):

users = serializers.SerializerMethodField()
groups = serializers.SerializerMethodField()

Expand Down Expand Up @@ -108,7 +107,6 @@ class Meta:


class RBACContentGuardPermissionSerializer(serializers.Serializer):

usernames = serializers.ListField(default=[])
groupnames = serializers.ListField(default=[])

Expand Down
1 change: 0 additions & 1 deletion pulpcore/app/tasks/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ async def _repair_artifacts_for_content(subset=None, verify_checksums=True):
) as corrupted, ProgressReport(
message="Repair corrupted units", code="repair.repaired"
) as repaired:

with ThreadPoolExecutor(max_workers=2) as checksum_executor:
async for content_artifact in sync_to_async_iterable(
query_set.select_related("artifact").iterator()
Expand Down
1 change: 0 additions & 1 deletion pulpcore/content/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ async def _heartbeat():
msg = i8ln_msg.format(name=name, interarrival=heartbeat_interval)

while True:

try:
content_app_status, created = await sync_to_async(
ContentAppStatus.objects.get_or_create
Expand Down
1 change: 0 additions & 1 deletion pulpcore/tests/unit/models/test_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@


class ContentCRUDTestCase(TestCase):

artifact01_path = os.path.join(tempfile.gettempdir(), "artifact01-tmp")
artifact02_path = os.path.join(tempfile.gettempdir(), "artifact02-tmp")

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
asyncio-throttle~=1.0
aiohttp~=3.8.1
aiohttp>=3.8.1,<3.9.2
aiodns~=3.0.0
aiofiles==0.8.0
aioredis~=2.0.1
backoff~=1.11.0
click<9.0
cryptography~=36.0.2
cryptography>=38.0.1,<41.0.8
Django~=3.2.13 # LTS version, switch only if we have a compelling reason to
django-currentuser~=0.5.3
django-filter~=21.1
Expand Down

0 comments on commit 89c1d06

Please sign in to comment.