Replies: 2 comments 7 replies
|
I created a tag, latest didn't work, |
4 replies
|
If setup is in root, does pip checkout the whole repository? I’m thinking about trying to setup a workflow to work with PyPi |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Based on issue #145
It works! but it means that the user will install the package from the latest commit. A better way is to tag the release with a version tag (
git tag v.2.1.2). Then the user couldpython -m pip install "pyrx @ git+https://github.com/CEXT-Dan/PyRx.git#subdirectory=pyrx@v.2.1.2". An even better way is to tag the commit with a version tag and a taglatest, then the user couldpython -m pip install "pyrx @ git+https://github.com/CEXT-Dan/PyRx.git#subdirectory=pyrx@latest"Additionally I think
setup.pyshould be placed in the root directory andpyproject.tomlshould be added, but all this is already done here: https://github.com/gswifort/PyRx/tree/73-cad-bundle-installerWe can try to merge this later or you can use this and adjust it manually.
All reactions