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

[bug] v1.3.0 ModuleNotFoundError: No module named 'importlib.metadata' (v1.2.0 is OK) #586

Open
seunggabi opened this issue Dec 18, 2023 · 1 comment · May be fixed by #595
Open

[bug] v1.3.0 ModuleNotFoundError: No module named 'importlib.metadata' (v1.2.0 is OK) #586

seunggabi opened this issue Dec 18, 2023 · 1 comment · May be fixed by #595
Labels
bug Something isn't working

Comments

@seunggabi
Copy link

***** BEFORE LOGGING AN ISSUE *****

  • Is this something you can debug and fix? Send a pull request! Bug fixes and documentation fixes are welcome.
  • Please check if a similar issue already exists or has been closed before. Seriously, nobody here is getting paid. Help us out and take five minutes to make sure you aren't submitting a duplicate.
  • Please review the guidelines for contributing

Code

from your_code import your_buggy_implementation

Repro Steps (if applicable)

  1. ...
  2. ...
  3. Broken!

Expected Behavior

A description of what you expected to happen.

# PYTHONPATH=$PYTHONPATH:../ python3 app.py
Traceback (most recent call last):
  File "app.py", line 5, in <module>
    from flask_restx import Api
  File "/usr/local/lib/python3.6/site-packages/flask_restx/__init__.py", line 1, in <module>
    from . import fields, reqparse, apidoc, inputs, cors
  File "/usr/local/lib/python3.6/site-packages/flask_restx/fields.py", line 22, in <module>
    from .marshalling import marshal
  File "/usr/local/lib/python3.6/site-packages/flask_restx/marshalling.py", line 7, in <module>
    from .utils import unpack
  File "/usr/local/lib/python3.6/site-packages/flask_restx/utils.py", line 43, in <module>
    BaseResponse = import_werkzeug_response()
  File "/usr/local/lib/python3.6/site-packages/flask_restx/utils.py", line 30, in import_werkzeug_response
    import importlib.metadata
ModuleNotFoundError: No module named 'importlib.metadata'

Actual Behavior

A description of the unexpected, buggy behavior.

Error Messages/Stack Trace

If applicable, add the stack trace produced by the error

Environment

  • Python version: 3.6.8
  • Flask version: 1.1.2
  • Flask-RESTX version: 1.3.0
  • Other installed Flask extensions

Additional Context

  • Flask-RESTX version: 1.2.0 is OK
@seunggabi seunggabi added the bug Something isn't working label Dec 18, 2023
@peter-doggart
Copy link
Contributor

peter-doggart commented Dec 18, 2023 via email

jason-the-j pushed a commit to jason-the-j/flask-restx that referenced this issue Feb 19, 2024
include python_requires option on setup for pip to resolve python dependency accordingly.
prevent installing the latest flask_restx regardless of python version.
fixes python-restx#586
@jason-the-j jason-the-j linked a pull request Feb 19, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants