Is anyone using Python >=3.11 and able to insta...
# random
i
Is anyone using Python >=3.11 and able to install plugins? I'm getting errors when trying to add plugins with a venv running on Python 3.11.5
d
Using since 3.11.2 up to 3.11.6. The only issues I’ve got was related to plugins unsupported 3.11
e
Yeah, my dogfood project's running on 3.11 and all the plugins I use support it. If a plugin does not support the same Python version as the one Meltano is installed on, you can use the
python
override: https://docs.meltano.com/reference/settings/#python Would look something like:
Copy code
plugins:
  extractors:
  - name: my-tap
    python: python3.10 # or a path like /usr/bin/python3.10
wow 1