-
### Steps to Reproduce
```sh
# create a random project on Windows
rye init asydhj
cd .\asydhj\
rye sync
# the default script should work:
# [project.scripts]
# hello = "asydhj:hello"
rye ru…
-
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…
-
### Steps to Reproduce
1. Create a `pyproject.toml` with dynamic versioning:
```toml
[project]
dynamic = ["version"]
```
2. Use `rye version -b` to bump the version:
```ba…
-
We just got bit by this at work when trying out `rye`, one dependency brought in `pywin32` three levels down and when ran with `rye sync` it's included without environment markers in `requirements.loc…
-
For example, I have `C:\Users\jfcherng\.rye\py\cpython@3.8.19` but it won't be listed on `uv toolchain list` and I can't do `uv venv --python 3.8`. I can add `C:\Users\jfcherng\.rye\py\cpython@3.8.19`…
-
**Describe the bug**
Rye project creation ignores base interpreter setting
**To Reproduce**
Steps to reproduce the behavior:
1. Install Python 3.10
2. Open New Project Wizard
3. Set Environmen…
-
### 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`…
-
### Description
Ignored (using the `--ignore` feature) dotdirs show up in the JSON output file.
### How To Reproduce
```
scancode -v --ignore ".*" --json-lines=scancode.json -l --strip-root…
-
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
…
-
I have a method which simply removes an entire directory.
``` ruby
def remove_cache
# Remove the cache
begin
@system_rye.disable_safe_mode
@system_rye.rm(:r, :f, @@cache_path)
ensure
…