1,401 questions
1 vote
1 answer
60 views
Depedency Hell airflow+dbt
Hello I'm new to airflow, lately I'm struggling on a project with dbt+airflow+docker. My problem 1) I pip install dbt-core, dbt-duckdb adapter, 2) I try to install airflow with: pip install "...
0 votes
1 answer
34 views
ModuleNotFoundError: No module named 'airbyte_cdk.sources.declarative.manifest_declarative_source'
I'm facing this issue when trying to run airbyte connector tests using airbyte CI, airbyte-ci connectors --name source-nexus-datasets test It fails in "Python CLI smoke test using PyAirbyte:&...
0 votes
1 answer
67 views
VS Code won't make import suggestions for my Python library
I have made a Python library whose tree directory structure looks like lorentz_enrichment ├── __init__.py │ └── lorentz_enricher.cpython-312.pyc ├── configs │ ├── __init__.py │ │ ├── logger....
0 votes
1 answer
72 views
when streamlit_app.py file are under nested folders then ModuleNotFound Error comes for other import s in streamlit cloud
we have streamlit based project and deployed on streamlit cloud and it was working fine when main file streamlit_app.py was under src and now move the main file under nested folder of src/alpha/...
0 votes
1 answer
103 views
Debugging Flask in Cursor Git Worktree Environment with Poetry Not Working
Interesting pre data: I had no problem debugging in cursor before I created a git worktree of my repo Issue Details: After creating a git worktree I now how a separate .venv in both worktrees I ...
-2 votes
1 answer
84 views
Activate virtualenv in .envrc in poetry managed project
I want to activate a Python virtual env by changing into a directory. This should activate the virtual env: cd ~/projects/myproject The project gets managed with poetry. Background: I am too lazy to ...
3 votes
1 answer
230 views
How to fix DpiAwarenessContext Qt error in the context of pytest on Windows 11?
On Windows 11 I am trying to run pytest using Poetry and a very complex test setup, which uses Qt for some things. However, when running this complex test (which worked before, and seems to work for ...
0 votes
0 answers
187 views
Unable to install our Poetry plugin: pip says there is no matching distribution found
I wrote a Poetry plugin and have it stored on a company PyPI repo. I am working on a Python project using Poetry and want to use my plugin. I though specifying the company repo with tool.poetry.source ...
0 votes
1 answer
145 views
My python project that requires a plugin that I also wrote fails on poetry install because the "version solving failed"
I am using the following versions: Poetry (version 2.1.1) Python 3.13.2 pip 25.0.1 from <correct path to the pip location in venv> I have written an application plugin for poetry. That project ...
0 votes
0 answers
103 views
VS Code Python extension injects incorrect start up script oh-my-posh variables with shell integration
The task I'm using oh-my-posh to display extra info in the terminal for PowerShell (v7) and Git Bash. The problem When using Windows Terminal I can see that the theme changes are present, but in the ...
-3 votes
1 answer
118 views
Build error with python-lzf while updating package with poetry [duplicate]
I am trying to update a package via poetry, but get an error with python-lzf which is one of the dependencies. $ poetry update package_name - Installing python-lzf (0.2.6): Failed building 'lzf' ...
0 votes
1 answer
72 views
Is there a way to mimic pip --extra-index-url functionality for transitive dependency resolution?
In my corporate environment we are forced to proxy PyPI through our internal artifactory service, e.g.: https://[COMPANY URL]/artifactory/api/pypi/pypi-release/simple I therefore set up my pyproject....
0 votes
1 answer
67 views
Module showing as missing in PyCharm despite installation
An environment is set up using Poetry v2.1.3. The environment is created from a pyproject.toml which has pandas as one of the dependencies: [project] name = "pintail-proj" version = "0....
2 votes
1 answer
70 views
Pyairbyte will not pick up my local changes to a source connector
I am uncertain of how to do development against an existing connector using pyairbyte. I cannot get pyairbyte to successfully load my modified source connector. I have made changes to the source-...
0 votes
0 answers
44 views
Unable to install private Azure-hosted package with Poetry (works with pip)
I’ve created a Python package hosted in a private Azure Artifacts repository. After configuring pip.conf, I’m able to install the package using pip without any issues. Now, I’m trying to use the same ...