Skip to content

Commit 489af3f

Browse files
authored
Merge pull request #115 from matt-sd-watson/master
Additional setup dependency for jupyter-client
2 parents 31b64ef + 997366d commit 489af3f

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
civet.egg-info/
3+
dist/

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Instructions for installing civet locally
1414

1515
### Install civet
1616

17-
1. ``git clone https://github.com/COG-UK/civet.git`` and ``cd civet``
17+
1. ``git clone https://github.com/artic-network/civet.git`` and ``cd civet``
1818
2. ``conda env create -f environment.yml``
1919
3. ``conda activate civet``
2020
4. ``python setup.py install``
@@ -52,4 +52,4 @@ updates the conda environment
5252
- Try ``pip uninstall civet`` and then re-install with `python setup.py install`
5353

5454

55-
### [Next: Input options](./input_options.md)
55+
### [Next: Input options](./input_options.md)

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ def run(self):
4646
"grip>=4.5.2",
4747
"tabulate>=0.8.7",
4848
"snipit>=1.0.3",
49-
"traitlets>=5.0"
49+
"traitlets>=5.0",
50+
"jupyter-client<7.0"
5051
],
5152
cmdclass={
5253
'npm_install': NPMInstall

0 commit comments

Comments
 (0)