Skip to content

Commit 5ed231f

Browse files
authored
Merge pull request #348 from openworm/dev_0.9.5
Set development as v0.9.5
2 parents a24bdec + edc5124 commit 5ed231f

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/docker-image-intel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker Image Test Build - Intel drivers
1+
name: Docker Image Build - Intel drivers
22

33
on:
44
push:
@@ -18,7 +18,7 @@ jobs:
1818
- name: Build the Docker image
1919
run: |
2020
chmod a+w output/
21-
ls -alt
21+
ls -alth
2222
./build_intel.sh
2323
2424
- name: Info on Docker images

.github/workflows/docker-image-quickrun.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker Image Test - quick
1+
name: Docker Image Quick Run
22

33
on:
44
push:
@@ -17,7 +17,7 @@ jobs:
1717
- name: Build the Docker image
1818
run: |
1919
chmod a+w output/
20-
ls -alt
20+
ls -alth
2121
./build.sh
2222
- name: Info on Docker images
2323
run: |

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Docker Image Test Build
1+
name: Docker Image Build & Run
22

33
on:
44
push:
@@ -17,7 +17,7 @@ jobs:
1717
- name: Build the Docker image
1818
run: |
1919
chmod a+w output/
20-
ls -alt
20+
ls -alth
2121
./build.sh
2222
- name: Info on Docker images
2323
run: |

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN mkdir -p /etc/sudoers.d && \
2020

2121
ENV DEBIAN_FRONTEND noninteractive # TODO: change
2222

23+
2324
################################################################################
2425
######## Update/install essential libraries
2526

@@ -60,7 +61,7 @@ RUN pip3 install neuron==8.0.1
6061

6162
RUN git clone https://github.com/openworm/c302.git && \
6263
cd c302 && \
63-
git checkout ow-0.9.4 && \
64+
git checkout ow-0.9.5 && \
6465
sudo pip install .
6566

6667
# Note: pyNeuroML installed with the above library
@@ -74,7 +75,7 @@ RUN owm bundle remote --user add ow 'https://raw.githubusercontent.com/openworm/
7475

7576
RUN git clone https://github.com/openworm/sibernetic.git && \
7677
cd sibernetic && \
77-
git checkout ow-0.9.4 # fixed to a specific branch
78+
git checkout ow-0.9.5 # fixed to a specific branch
7879

7980

8081
################################################################################

Dockerfile_intel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ RUN sudo update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 10
5353
################################################################################
5454
######## Install NEURON simulator
5555

56-
RUN pip3 install neuron==8.0.1
56+
RUN pip3 install neuron==8.2.2
5757

5858

5959
################################################################################
6060
######## Install c302 for building neuronal network models
6161

6262
RUN git clone https://github.com/openworm/c302.git && \
6363
cd c302 && \
64-
git checkout ow-0.9.4 && \
64+
git checkout ow-0.9.5 && \
6565
sudo pip install .
6666

6767
# Note: pyNeuroML installed with the above library
@@ -75,7 +75,7 @@ RUN owm bundle remote --user add ow 'https://raw.githubusercontent.com/openworm/
7575

7676
RUN git clone https://github.com/openworm/sibernetic.git && \
7777
cd sibernetic && \
78-
git checkout ow-0.9.4 # fixed to a specific branch
78+
git checkout ow-0.9.5 # fixed to a specific branch
7979

8080

8181
################################################################################

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.4
1+
0.9.5

0 commit comments

Comments
 (0)