File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Releasing
2
+
3
+ First, bump the version to final release version.
4
+
5
+ Then follow these steps (which expect a Bash shell; they might not work with other shells).
6
+ ```
7
+ git clean -dffx
8
+ pip install -q 517
9
+ python -m pep517.build .
10
+ export script_version=`python -c "from pytest_jupyter._version import __version__; print(__version__)"`
11
+ git commit -a -m "Release $script_version"
12
+ git tag $script_version
13
+ git push --all
14
+ git push --tags
15
+ pip install twine
16
+ twine check dist/*
17
+ twine upload dist/*
18
+ ```
Original file line number Diff line number Diff line change 1
1
# Copyright (c) Jupyter Development Team.
2
2
# Distributed under the terms of the Modified BSD License.
3
3
4
- __version__ = "0.0.1 "
4
+ __version__ = "0.0.2.dev0 "
5
5
You can’t perform that action at this time.
0 commit comments