I have a pipfile that looks something like this:
[packages]
pyarrow = "*"
tensorflow = "==1.8.0"
h5py = "*"
I have another package, xyz
, that exists in a github repo. I've cloned that repo, made some edits to it, and now want to include the edited version in my pipfile. If it helps, I also have the modified version of xyz
in a branch on Github.
How might I do this?