pyflow icon indicating copy to clipboard operation
pyflow copied to clipboard

can't add a non pypi published package as a git package

Open tanj opened this issue 4 years ago • 0 comments

I have a non-published git project that I'm using in a script. I've done some digging into the source and from what I can tell the reason is that it can't find the package version in pypi.

pyflow 0.2.9

Steps to reproduce

  1. pyflow new project_name
  2. Set dep
[tool.pyflow.dependencies]
swissarmy = {git = "https://github.com/tanj/swissarmy.git"}
  1. pyflow install
  2. Can't get version info for the dependency swissarmy. Is it spelled correctly? Is the internet connection ok?

The only place i can find that error string is here So it seems to me that the call to get_version_info fails (because this package isn't in pypi)

tanj avatar Mar 19 '21 22:03 tanj