Skip to content

Commit d3e40ae

Browse files
committed
release update
1 parent a62d4af commit d3e40ae

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

release.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
# Assumes all repositories master/main locally are upto date including C build
1818
# This script can be safely be repeated until the $release pushed to pypi or tagged
1919

20-
my $release = "7.2.2"; # Without the leading 1!
21-
my $release_name = "TO DO";
20+
my $release = "7.3.1"; # Without the leading 1!
21+
my $release_name = "To Do";
2222
#my $branch = $release;
2323
my $branch = "version_bump";
2424

release_steps.txt

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Warning The pypi steps 7 and 10 can not be repeated so make sure test passed!
4141
12. edit Jenkins
4242
- Python install from testpypi -> Python install from pypi
4343
remove (*3) "https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/"
44-
13. commit and push
44+
13. create new branch commit and push
4545
14. Check Jenkins
4646

4747
15. Change version in tag.pl
@@ -54,3 +54,27 @@ After a full (not pre release)
5454
17. perl release.pl (from inside SupportScripts)
5555

5656
For Java in github do a new release and include JavaSpiNNaker/SpiNNaker-front-end/target/spinnaker-exe.jar
57+
58+
Jupyter
59+
pip install --upgrade pip
60+
pip install --upgrade numpy
61+
pip install --upgrade sPyNNaker
62+
63+
git_tag("../TSPonSpiNNaker");
64+
git_tag("../BitBrainDemo");
65+
66+
run a script may show other pip upgrades needed
67+
68+
run a script and see a Java error
69+
70+
No jar file at *****/SpiNNaker-front-end/target/spinnaker-exe.jar
71+
72+
subprocess.CalledProcessError: Command '['java', '-jar', '******/SpiNNaker-front-end/target/spinnaker-exe.jar'
73+
jar ******/SpiNNaker-front-end/target/spinnaker-exe.jar was updated *******
74+
75+
cd into director (target)
76+
rm spinnaker-exe.jar
77+
wget https://github.com/SpiNNakerManchester/JavaSpiNNaker/releases/download/7.3.0/spinnaker-exe.jar
78+
79+
$HOME/reports
80+

tag.pl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
use Git;
2525

2626

27-
my $release = "7.1.0"; # Without the leadint 1!
27+
my $release = "7.3.0"; # Without the leadint 1!
2828

2929
sub git_tag{
3030
my $start_path = getcwd();
@@ -67,5 +67,7 @@ sub git_tag{
6767
git_tag("../sPyNNakerJupyter");
6868
git_tag("../sphinx8");
6969
git_tag("../IntegrationTests");
70+
git_tag("../TSPonSpiNNaker");
71+
git_tag("../BitBrainDemo");
7072
# die "stop";
7173

testpypi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
do_twine() {
2121
cd $1
22-
twine upload -r testpypi dist/*
22+
twine upload --verbose -r testpypi dist/*
2323
cd ..
2424
}
2525

0 commit comments

Comments
 (0)