You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The maturin action only supports tagged releases, as documented in the README.
Recently, I ran into a bug and wanted to use the latest commit on the main branch to build my project. However, this is not currently possible. I have the git branch specified in my pyproject.toml:
Maturin action recognized this, but doesn't allow it and installs the latest released version (which does not include the fix I require).
Found maturin version requirement maturin @ git+https://github.com/PyO3/maturin.git@main specified in pyproject.toml
Warning: No maturin release found from requirement maturin @ git+https://github.com/PyO3/maturin.git@main, fallback to latest
It would be great if we could at least use the latest version on the main branch. Though I understand this may be hard to support.
The text was updated successfully, but these errors were encountered:
Well, I guess it's not that hard to support, we could translate that into pip install https://github.com/PyO3/maturin/archive/refs/heads/<git-rev>.zip, but it's gonna be slow because it will compile maturin from source.
The maturin action only supports tagged releases, as documented in the README.
Recently, I ran into a bug and wanted to use the latest commit on the main branch to build my project. However, this is not currently possible. I have the git branch specified in my
pyproject.toml
:Maturin action recognized this, but doesn't allow it and installs the latest released version (which does not include the fix I require).
It would be great if we could at least use the latest version on the main branch. Though I understand this may be hard to support.
The text was updated successfully, but these errors were encountered: