-
This is related to https://stackoverflow.com/a/77464614 where a concrete dependency is specified via a requirements.txt file.
Can rye install a concrete dependency such as:
```
gdal @ https://g…
-
Hi.
I think rye is more useful if there was an option to not use venv like `poetry config virtualenvs.create false`.
-
Hi,
I'm playing with rye and discovered that rye behaves differently when executing commands local or via ssh
``` sh
>> a = Rye.shell 'test','-d /bins'
=> [, , 1, ]
>> box = Rye::Box.new('localhost'…
-
### Steps to Reproduce
1. run `rye sync` followed by `rye test` in this repository
2. observe that pytest takes a bloody long time to collect tests
3. hit `ctrl+c`
4. observe how `rye` exists but …
-
### Steps to Reproduce
- fresh install of rye version 0.31.0, which installs latest python (3.12.2)
(earlier rye 0.30.0 works fine)
Inside project, with a requirements.txt (not sure if that's …
-
### 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…
-
### Steps to Reproduce
1. `rye init rye-test`
2. `cd rye-test`
3. `rye sync`
4. `rye run hello && echo "success!"`
### Expected Result
```
$ rye run hello
Hello from rye-test!
success!
```
…
-
### Steps to Reproduce
Per https://github.com/astral-sh/rye/issues/941 I have an offline rye installation now working. To summarise, I have an internal pypi mirror and no proxy so followed these step…
nazq updated
8 months ago
-
## ryeメモ
`pip --index-url` ( `pip install -i` )でインストールするようなものは、`pyproject.toml` に以下のように記述する。
```toml
...
[[tool.rye.sources]]
name = "torch"
url = "https://download.pytorch.org/whl/torch/"
…
-
### Steps to Reproduce
```
rye pin cpython@3.12
rye sync
rye pin pypy@3.10.13
rye sync
```
### Expected Result
Sync to succeed.
### Actual Result
```
Python version mismatch (found pypy@3.…