Replies: 2 comments 7 replies
-
I created a tag, latest didn't work, |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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#[email protected]"
. 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.py
should be placed in the root directory andpyproject.toml
should 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.
Beta Was this translation helpful? Give feedback.
All reactions