+rye-up.com (#5257)

* new file:   projects/rye-up.com/package.yml

* \n

* Update package.yml
This commit is contained in:
Andrew 2024-02-19 18:25:47 +02:00 committed by GitHub
parent 166856e309
commit b9f45d2bd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,39 @@
distributable:
url: git+https://github.com/mitsuhiko/rye
ref: ${{version.tag}}
versions:
github: mitsuhiko/rye
companions:
curl.se/ca-certs: '*'
build:
dependencies:
rust-lang.org: '>=1.65'
rust-lang.org/cargo: '*'
script:
- cargo install $ARGS
env:
ARGS:
- --path=rye
- --locked
- --root={{prefix}}
provides:
- bin/rye
test:
fixture: |
[project]
name = "testproj"
requires-python = ">=3.9"
version = "1.0"
license = {text = "MIT"}
script:
- rye --version | grep {{version}}
- cp $FIXTURE pyproject.toml
- rye add requests==2.24.0
- rye sync
- cat pyproject.toml | grep 'requests==2.24.0'
- rye run python -c 'import requests;print(requests.__version__)' | grep 2.24.0