Open slokhorst opened 5 years ago
I also got this. Due to how make_graph
currently works, the package is being included in the dependencies, and therefore has to be on PyPI. This is somewhat incorrect, since the local package might have different deps, but also means it doesn't work with unreleased packages, making testing hard.
A quick fix is to change line 131 in poet.py
:
- ignore = ['argparse', 'pip', 'setuptools', 'wsgiref']
+ ignore = ['argparse', 'pip', 'setuptools', 'wsgiref', pkg]
Edit: That change above might unblock you, but can break other scenarios. Sounds like this is a known problem, and #28 would solve this issue.
I'm getting the same error. I'm not a python developer, but I'm familiar with homebrew. I'm attempting to create a tap+formula for a python utility written at my current client. The utility is not published anywhere. (It is installed via: pip install git+ssh://git@github.com/client/tool.git
)
Knowing next to nothing about python, pip or how it handles dependencies (other than that it's seemingly perpetually painful?), what would be recommended next steps?
I'm trying to create a Brew formula for Gajim. I have grabbed the gajim source and am trying to run poet, but it fails:
Now poet fails with the following output:
Am I using poet right? Any idea what's going wrong?