File tree Expand file tree Collapse file tree 4 files changed +31
-5
lines changed Expand file tree Collapse file tree 4 files changed +31
-5
lines changed Original file line number Diff line number Diff line change 17
17
# Assumes all repositories master/main locally are upto date including C build
18
18
# This script can be safely be repeated until the $release pushed to pypi or tagged
19
19
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 " ;
22
22
# my $branch = $release;
23
23
my $branch = " version_bump" ;
24
24
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Warning The pypi steps 7 and 10 can not be repeated so make sure test passed!
41
41
12. edit Jenkins
42
42
- Python install from testpypi -> Python install from pypi
43
43
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
45
45
14. Check Jenkins
46
46
47
47
15. Change version in tag.pl
@@ -54,3 +54,27 @@ After a full (not pre release)
54
54
17. perl release.pl (from inside SupportScripts)
55
55
56
56
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
+
Original file line number Diff line number Diff line change 24
24
use Git;
25
25
26
26
27
- my $release = " 7.1 .0" ; # Without the leadint 1!
27
+ my $release = " 7.3 .0" ; # Without the leadint 1!
28
28
29
29
sub git_tag{
30
30
my $start_path = getcwd();
@@ -67,5 +67,7 @@ sub git_tag{
67
67
git_tag(" ../sPyNNakerJupyter" );
68
68
git_tag(" ../sphinx8" );
69
69
git_tag(" ../IntegrationTests" );
70
+ git_tag(" ../TSPonSpiNNaker" );
71
+ git_tag(" ../BitBrainDemo" );
70
72
# die "stop";
71
73
Original file line number Diff line number Diff line change 19
19
20
20
do_twine () {
21
21
cd $1
22
- twine upload -r testpypi dist/*
22
+ twine upload --verbose - r testpypi dist/*
23
23
cd ..
24
24
}
25
25
You can’t perform that action at this time.
0 commit comments