From 67352f7ece32e70d35d03af9417b705f2050c3b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Wed, 10 Mar 2021 15:17:12 +0100 Subject: [PATCH] Add conda badge --- README.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6248073..d965b06 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # jupyterlab-pullrequests [![Build Status](https://github.com/jupyterlab/pull-requests/actions/workflows/build.yml/badge.svg)](https://github.com/jupyterlab/pull-requests/actions/workflows/build.yml) -[![Version](https://img.shields.io/npm/v/@jupyterlab/pullrequests.svg)](https://www.npmjs.com/package/@jupyterlab/pullrequests) -[![Version](https://img.shields.io/pypi/v/jupyterlab-pullrequests.svg)](https://pypi.org/project/jupyterlab-pullrequests/) +[![NPM Version](https://img.shields.io/npm/v/@jupyterlab/pullrequests.svg)](https://www.npmjs.com/package/@jupyterlab/pullrequests) +[![Pypi Version](https://img.shields.io/pypi/v/jupyterlab-pullrequests.svg)](https://pypi.org/project/jupyterlab-pullrequests/) +[![Conda Version](https://img.shields.io/conda/vn/conda-forge/jupyterlab-pullrequests.svg)](https://anaconda.org/conda-forge/jupyterlab-pullrequests) A JupyterLab extension for reviewing pull requests. @@ -25,16 +26,31 @@ For now, it supports GitHub and GitLab providers. ### 1. Install the extension with the following steps +With pip: + +```bash +pip install jupyterlab-pullrequests +jupyter lab build +``` + +Or with conda: + ```bash -pip install --upgrade jupyterlab-pullrequests +conda install -c conda-forge jupyterlab-pullrequests jupyter lab build ``` + For GitLab, in addition, you will need to ```bash pip install diff-match-patch ``` +Or with conda: + +```bash +conda install -c conda-forge diff-match-patch +``` ### 2. Getting your access token