-
In larger organizations, it is often useful to have some kind of tmeplate for starting new python projects to encourage (organizational) best practices. A popular solution for python projects would be…
-
### Steps to Reproduce
1. I have `cpython@3.12.2` toolchain (only) installed in rye
2. `git clone git@github.com:astral-sh/ruff && cd ruff`
3. `rye sync`
### Expected Result
I expected `rye sync`…
-
I personally have been using `pdm` to manage python projects, and I'd really love a way to easily migrate a couple of them over to try `rye` out. If this already exists or is being discussed elsewhere…
-
Hi,
I asked this question in the discord, but thought about it.
At the moment it is not possible to use shell interpolation with `rye run` command.
See: https://rye-up.com/guide/pyproject/#cmd
…
-
Having python dependencies is hard to manage when called from other languages. If Rye could install those dependencies through a library, that would make it a lot easier to integrate python dependenci…
-
This is not an issue I really wanted to open, because I was hoping I can avoid putting yet another thing into the ecosystem that requires custom handling. Unfortunately vscode currently installs tools…
-
### Steps to Reproduce
```sh
rye init
rye build
rye publish -r testpypi
```
### Expected Result
Rye uploads the package to TestPyPI.
### Actual Result
Rye attempts an upload to PyPI.
```
…
-
Currently `rye lock` will create a virtualenv if it doesn't exist, even though it doesn't strictly need to. This is because it's a wrapper around `rye sync` which installs the locked packages into the…
-
When using Rye on Windows (which works great by the way!) there's always an error message `System cannot find the path specified` when initializing a `Rye::Box`.
I guess this is because of
```Ruby…
-
Currently for https://rye.astral.sh/guide/pyproject/#chain
> If any of the commands fails, the rest of the commands won't be executed and the chain fails.
But it would be good if there was an o…