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
I'm replacing rye with uv.
(The following articles were referenced: astral-sh/rye#1342)
I've replaced most of the functionality with uv, or changed to other commands or packages.
But changing the version of a project is both simple and annoying.
In the past, I've changed versions like this(in github action) rye version <some version>
But now I change it like this sed -i'' -E “s/version = \”0.0.0\“/version = \”$VERSION\“/g” pyproject.toml
This works, but it's not satisfactory.
I'd like to know if you have any plans to provide functionality like this.
Again, I'm not saying you have to.
It doesn't matter if you don't have it, but it would be nice to have it.
Either way, I'm happy enough with uv for now.
The text was updated successfully, but these errors were encountered:
It would be nice if it would be able to incorporate features like bump-my-version where you can specify which files to do the version replace and how to search and replace the version strings using settings in the pyproject.toml file.
I'm replacing
rye
withuv
.(The following articles were referenced: astral-sh/rye#1342)
I've replaced most of the functionality with
uv
, or changed to other commands or packages.But changing the version of a project is both simple and annoying.
In the past, I've changed versions like this(in github action)
rye version <some version>
But now I change it like this
sed -i'' -E “s/version = \”0.0.0\“/version = \”$VERSION\“/g” pyproject.toml
This works, but it's not satisfactory.
I'd like to know if you have any plans to provide functionality like this.
Again, I'm not saying you have to.
It doesn't matter if you don't have it, but it would be nice to have it.
Either way, I'm happy enough with
uv
for now.The text was updated successfully, but these errors were encountered: