Skip to content

Commit e7bf510

Browse files
Merge pull request #4 from steffengraber/sg-branch-1
sg-branch-1
2 parents dcdd2de + 7b6a3d7 commit e7bf510

File tree

4 files changed

+48
-4
lines changed

4 files changed

+48
-4
lines changed

.devcontainer/devcontainer.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
3+
{
4+
"name": "Ubuntu",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/base:noble",
7+
"features": {
8+
"ghcr.io/devcontainers/features/docker-in-docker:2": {
9+
"moby": true,
10+
"azureDnsAutoDetection": true,
11+
"installDockerBuildx": true,
12+
"installDockerComposeSwitch": true,
13+
"version": "latest",
14+
"dockerDashComposeVersion": "latest"
15+
}
16+
}
17+
18+
// Features to add to the dev container. More info: https://containers.dev/features.
19+
// "features": {},
20+
21+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
22+
// "forwardPorts": [],
23+
24+
// Use 'postCreateCommand' to run commands after the container is created.
25+
// "postCreateCommand": "uname -a",
26+
27+
// Configure tool-specific properties.
28+
// "customizations": {},
29+
30+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
31+
// "remoteUser": "root"
32+
}

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for more information:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
# https://containers.dev/guide/dependabot
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "devcontainers"
10+
directory: "/"
11+
schedule:
12+
interval: weekly

src/3.8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ RUN mkdir ${SRC_PATH}/nest-build && cd $_ && \
125125
python3 -m pip install --upgrade scipy && \
126126
python3 -m pip install --upgrade gsl wheel setuptools swig
127127

128-
#Latest update to nestml v8.0.0-rc3
129-
RUN python3 -m pip install NESTML==8.0.0rc3 && \
128+
#Latest update to nestml v8.0.0
129+
RUN python3 -m pip install NESTML==8.0.0 && \
130130
python3 -m pip install nestml-server@git+https://github.com/babsey/[email protected] && \
131131
python3 -m pip install --upgrade pygsl@git+https://github.com/pygsl/[email protected] && \
132132
python3 -m pip install pandas "numpy<=1.26"

src/dev/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ python3 -m pip install --upgrade nest-desktop && \
131131
python3 -m pip install --upgrade scipy && \
132132
python3 -m pip install --upgrade gsl wheel setuptools swig
133133

134-
#Latest update to nestml v8.0.0-rc3
135-
RUN python3 -m pip install nestml==8.0.0rc3 && \
134+
#Latest update to nestml v8.0.0
135+
RUN python3 -m pip install nestml==8.0.0 && \
136136
python3 -m pip install nestml-server@git+https://github.com/babsey/[email protected] && \
137137
python3 -m pip install --upgrade pygsl@git+https://github.com/pygsl/[email protected]
138138

0 commit comments

Comments
 (0)