I've a package registry for my package framework
. I want to get the latest alpha version from the package registry while there are beta versions available for same release. Example
Registry:
- framework 0.0.1a0
- framework 0.0.1a1
- framework 0.0.1b0
- framework 0.0.1b1
My pypoetry.toml file
[tool.poetry.dependencies]
framework = {version = "^0.0.1", allow-prerelease = true}
I want to install framework
latest alpha version (0.0.1a1) while this configuration installs (0.0.1b1).