Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some more default module mappings #20641

Merged
merged 5 commits into from
Apr 13, 2024
Merged
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -112,19 +112,26 @@ def two_groups_hyphens_two_replacements_with_suffix(
"beautifulsoup4": ("bs4",),
"bitvector": ("BitVector",),
"cattrs": ("cattr", "cattrs"),
"django-activity-stream": ("actstream",),
"django-cors-headers": ("corsheaders",),
"django-countries": ("django_countries",),
"django-filter": ("django_filters",),
"django-fsm": ("django_fsm",),
"django-notifications-hq": ("notifications",),
"django-oauth-toolkit": ("oauth2_provider",),
"django-object-actions": ("django_object_actions",),
"django-otp-yubikey": ("otp_yubikey",),
cognifloyd marked this conversation as resolved.
Show resolved Hide resolved
"django-postgres-extra": ("psqlextra",),
"django-redis": ("django_redis",),
"django-scim2": ("django_scim",),
"django-two-factor-auth": ("two_factor",),
"djangorestframework": ("rest_framework",),
"djangorestframework-api-key": ("rest_framework_api_key",),
"djangorestframework-dataclasses": ("rest_framework_dataclasses",),
"djangorestframework-jwt": ("rest_framework_jwt",),
"djangorestframework-queryfields": ("drf_queryfields",),
"djangorestframework-simplejwt": ("rest_framework_simplejwt",),
"drf-api-tracking": ("rest_framework_tracking",),
cognifloyd marked this conversation as resolved.
Show resolved Hide resolved
"elastic-apm": ("elasticapm",),
"enum34": ("enum",),
"factory-boy": ("factory",),
Expand All @@ -147,6 +154,7 @@ def two_groups_hyphens_two_replacements_with_suffix(
"launchdarkly-server-sdk": ("ldclient",),
"mail-parser": ("mailparser",),
"mysql-connector-python": ("mysql.connector",),
"o365": ("O365",),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ooh, unconventional case. That's a "fun" choice by this library! 😅

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed - no idea why the inconsistency!

"opencv-python": ("cv2",),
"opencv-python-headless": ("cv2",),
"opensearch-py": ("opensearchpy",),
Expand Down
Loading