From 697be38fab5d33ab46f5926ae99547fd362ec26c Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Mon, 10 Jul 2023 08:46:37 +0200 Subject: [PATCH] Use pip to install build instead of pipx in the publish workflow, and add link to contributing --- .github/workflows/publish-package.yml | 2 +- CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index aaa2304..a68ae51 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -25,7 +25,7 @@ jobs: python-version: '3.8' - name: Install dependencies run: | - pipx install build + pip install build - name: Build run: | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9b04ea3..d5add11 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,7 +20,7 @@ sudo dnf install cmake ## Getting Started -Install `hatch` to manage the projects dependencies and run dev scripts: +Install [`hatch`](https://hatch.pypa.io) to manage the projects dependencies and run dev scripts: ```bash pipx install hatch