Skip to content

Commit e8a2a67

Browse files
author
Steven Silvester
committed
formatting
1 parent 110b68a commit e8a2a67

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

RELEASE.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ conda activate notebook-release
1818

1919
## Perform a local dev install
2020

21-
`pip install -ve .`
21+
```bash
22+
pip install -ve .
23+
```
2224

2325
## Install release dependencies
2426

@@ -45,7 +47,9 @@ python setup.py bdist_wheel
4547

4648
## Upload the artifacts
4749

48-
`twine check dist/* && twine upload dist/*`
50+
```bash
51+
twine check dist/* && twine upload dist/*
52+
```
4953

5054
## Change back to dev version
5155

@@ -56,4 +60,6 @@ git commit -am "Back to dev version"
5660

5761
## Push the commits and tags
5862

59-
`git push origin ${release_branch} --tags`
63+
```bash
64+
git push origin ${release_branch} --tags
65+
```

0 commit comments

Comments
 (0)