From eac4f4462ab1beafb3e6fe5c3e5a8b37a7836cb1 Mon Sep 17 00:00:00 2001 From: Andrii Riabchenko Date: Tue, 12 Mar 2024 17:31:04 +0200 Subject: [PATCH] new file: projects/pytest.org/pluggy/package.yml --- projects/pytest.org/pluggy/package.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 projects/pytest.org/pluggy/package.yml diff --git a/projects/pytest.org/pluggy/package.yml b/projects/pytest.org/pluggy/package.yml new file mode 100644 index 00000000..ccc5467d --- /dev/null +++ b/projects/pytest.org/pluggy/package.yml @@ -0,0 +1,23 @@ +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}}