Some of my taps are on python3.12.10 which is fine...
# best-practices
t
Some of my taps are on python3.12.10 which is fine when I'm developing this on Fedora but the production Ubuntu server doesn't have that installed yet. What's the recommended way to fix this? I could build it from source and point meltano to it using, I think, the meltano.yml but I don't want a direct path in there as that woudl stop it from working on my computer. Does
uv
handle this?
1
e
Hey Tanner 👋 I'm not sure there's anything to fix. Taps created from the cookiecutter by default support a range of Python versions (
>=3.9
currently). So unless you explicitly narrowed that constraint, and assuming that all dependencies are compatible, your taps should continue to work when installed in an earlier (but compatible!) Python version.
t
I created a custom tap that uses 3.10.12. I can downgrade that tap but I'd rather not
Unless it'd be too much of a headache to try to ham fist newer versions in
Yeah I just downgraded everything. Thank you
np 1