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

fix celery crashing on python 3.10 #2386

Merged
merged 1 commit into from
Oct 12, 2022
Merged
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
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
"regex==2020.7.14",
"flask-oidc-ex==0.5.5",
# to be replaced by stdlib version when we use Python 3.8+
"importlib_metadata<3.2",
"typing_extensions>=3.7.4",
"elastic-apm[flask]>=6.7,<6.8",
# Fix an issue with MarkupSafe 2.1.0 not exporting `soft_unicode`
Expand Down
2 changes: 1 addition & 1 deletion superdesk/backend_meta/backend_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# settings doesn't exist during tests
settings = None
import logging
from importlib_metadata import version as pkg_version, PackageNotFoundError
from importlib.metadata import version as pkg_version, PackageNotFoundError


logger = logging.getLogger(__name__)
Expand Down