Skip to content

Commit 46cf2fe

Browse files
committed
To 0.9.3
1 parent bf91911 commit 46cf2fe

File tree

12 files changed

+12
-14
lines changed

12 files changed

+12
-14
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2021 Individual Authors of code
1+
Copyright (c) 2012-2022 Individual Authors of code
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docker build -t "openworm/openworm:0.9.2" .
1+
docker build -t "openworm/openworm:0.9.3" .

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
docker build "$@" -t "openworm/openworm:0.9.2" .
3+
docker build "$@" -t "openworm/openworm:0.9.3" .

build2.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# Note: Python 2 is no longer officially supported and this Docker image will
55
# probably stop working eventually...
66

7-
docker build "$@" -t "openworm/openworm:0.9.2_py2" -f Dockerfile2 .
7+
docker build "$@" -t "openworm/openworm:0.9.3_py2" -f Dockerfile2 .

master_openworm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import math
1313

1414
print("*****************************")
15-
print("OpenWorm Master Script v0.9.2")
15+
print("OpenWorm Master Script v0.9.3")
1616
print("*****************************")
1717
print("")
1818
print("This script attempts to run a full pass through the OpenWorm scientific libraries.")
@@ -79,7 +79,7 @@ def execute_with_realtime_output(command, directory, env=None):
7979
p = Popen(shlex.split(command), stdout=PIPE, bufsize=1, cwd=directory, env=env)
8080
with p.stdout:
8181
for line in iter(p.stdout.readline, b''):
82-
print(line.decode('utf-8'), end='')
82+
print(line.decode('utf-8'), end='')
8383
p.wait() # wait for the subprocess to exit
8484
except KeyboardInterrupt as e:
8585
print("Caught CTRL+C")

rebuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
docker build "$@" -t "openworm/openworm:0.9.2" --no-cache .
3+
docker build "$@" -t "openworm/openworm:0.9.3" --no-cache .

run-shell-only.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ docker run -it ^
66
-e OW_OUT_DIR=%OW_OUT_DIR% ^
77
--privileged ^
88
-v %HOST_OUT_DIR%:%OW_OUT_DIR%:rw ^
9-
openworm/openworm:0.9.2 ^
9+
openworm/openworm:0.9.3 ^
1010
/bin/bash

run.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ docker run -d ^
2020
-e DURATION=%DURATION% ^
2121
--privileged ^
2222
-v %HOST_OUT_DIR%:%OW_OUT_DIR%:rw ^
23-
openworm/openworm:0.9.2 ^
23+
openworm/openworm:0.9.3 ^
2424
/bin/bash -c "python master_openworm.py"
2525

2626
docker logs -f openworm

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $DURATION_PART \
3333
-v /tmp/.X11-unix:/tmp/.X11-unix:rw \
3434
--privileged \
3535
-v $HOST_OUT_DIR:$OW_OUT_DIR:rw \
36-
openworm/openworm:0.9.2 \
36+
openworm/openworm:0.9.3 \
3737
bash -c "DISPLAY=:44 python master_openworm.py"
3838

3939
docker logs -f openworm

run2-shell-only.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ docker run -ti \
1717
-v /tmp/.X11-unix:/tmp/.X11-unix:rw \
1818
--privileged \
1919
-v $HOST_OUT_DIR:$OW_OUT_DIR:rw \
20-
openworm/openworm:0.9.2 \
20+
openworm/openworm:0.9.3 \
2121
bash

0 commit comments

Comments
 (0)