mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
24 lines
536 B
YAML
24 lines
536 B
YAML
distributable:
|
|
# Make sure you're either building from a fully intact git repository or PyPI tarballs
|
|
url: git+https://github.com/pytest-dev/pluggy.git
|
|
ref: ${{version.tag}}
|
|
|
|
versions:
|
|
github: pytest-dev/pluggy/tags
|
|
|
|
dependencies:
|
|
python.org: ^3.12
|
|
|
|
runtime:
|
|
env:
|
|
PYTHONPATH: ${{prefix}}/lib/python3.12/site-packages:$PYTHONPATH
|
|
|
|
build:
|
|
dependencies:
|
|
pypa.io/setuptools: '*'
|
|
script:
|
|
python -m pip install --prefix={{prefix}} .
|
|
|
|
test:
|
|
python -c 'import pluggy; print(pluggy.__version__)' | grep {{version}}
|