Skip to content

Commit 695f1c8

Browse files
committed
Update build status badge
1 parent 868a1bb commit 695f1c8

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
21
# jupyterannotate
32

4-
[![Build Status](https://travis-ci.org/DataQA/jupyterannotate.svg?branch=master)](https://travis-ci.org/DataQA/jupyterannotate)
5-
[![codecov](https://codecov.io/gh/DataQA/jupyterannotate/branch/master/graph/badge.svg)](https://codecov.io/gh/DataQA/jupyterannotate)
6-
3+
![Build Status](https://github.com/dataqa/jupyter-annotate/actions/workflows/build.yml/badge.svg?branch=main)
74

85
A Custom Jupyter Widget Library
96

@@ -17,19 +14,22 @@ pip install jupyterannotate
1714

1815
If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable
1916
the nbextension:
17+
2018
```bash
2119
jupyter nbextension enable --py [--sys-prefix|--user|--system] jupyterannotate
2220
```
2321

2422
## Development Installation
2523

2624
Create a dev environment:
25+
2726
```bash
2827
conda create -n jupyterannotate-dev -c conda-forge nodejs yarn python jupyterlab
2928
conda activate jupyterannotate-dev
3029
```
3130

3231
Install the python. This will also build the TS package.
32+
3333
```bash
3434
pip install -e ".[test, examples]"
3535
```
@@ -55,7 +55,9 @@ you might also need another flag instead of `--sys-prefix`, but we won't cover t
5555
of those flags here.
5656

5757
### How to see your changes
58+
5859
#### Typescript:
60+
5961
If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different
6062
terminals to watch for changes in the extension's source and automatically rebuild the widget.
6163

@@ -69,4 +71,5 @@ jupyter lab
6971
After a change wait for the build to finish and then refresh your browser and the changes should take effect.
7072

7173
#### Python:
74+
7275
If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.

0 commit comments

Comments
 (0)