Skip to content

Commit d8b60e9

Browse files
Merge pull request #189 from nextmv-io/merschformann/bump-pyomo
Bumps pyomo dependency to latest to fix SCIP
2 parents aeaffa5 + c4184fa commit d8b60e9

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cat input.json | docker run -i --rm \
22
-v $(pwd):/app ghcr.io/nextmv-io/runtime/pyomo:latest \
3-
sh -c 'python3 /app/main.py'
3+
sh -c 'pip install -r requirements.txt > /dev/null && python3 /app/main.py'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cat input.json | docker run -i --rm \
22
-v $(pwd):/app ghcr.io/nextmv-io/runtime/pyomo:latest \
3-
sh -c 'python3 /app/main.py'
3+
sh -c 'pip install -r requirements.txt > /dev/null && python3 /app/main.py'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cat input.json | docker run -i --rm \
22
-v $(pwd):/app ghcr.io/nextmv-io/runtime/pyomo:latest \
3-
sh -c 'python3 /app/main.py'
3+
sh -c 'pip install -r requirements.txt > /dev/null && python3 /app/main.py'

python-pyomo-knapsack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Cloud, you can use the following command:
2929
```bash
3030
cat input.json | docker run -i --rm \
3131
-v $(pwd):/app ghcr.io/nextmv-io/runtime/pyomo:latest \
32-
sh -c 'python3 /app/main.py'
32+
sh -c 'pip install -r requirements.txt > /dev/null && python3 /app/main.py'
3333
```
3434

3535
You can also debug the application by running it in a Dev Container. This
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyomo==6.9.5
1+
pyomo==6.10.0
22
nextmv==1.6.2

python-pyomo-shiftassignment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Cloud, you can use the following command:
3030
```bash
3131
cat input.json | docker run -i --rm \
3232
-v $(pwd):/app ghcr.io/nextmv-io/runtime/pyomo:latest \
33-
sh -c 'python3 /app/main.py'
33+
sh -c 'pip install -r requirements.txt > /dev/null && python3 /app/main.py'
3434
```
3535

3636
You can also debug the application by running it in a Dev Container. This
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyomo==6.9.5
1+
pyomo==6.10.0
22
nextmv==1.6.2

python-pyomo-shiftplanning/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Cloud, you can use the following command:
3030
```bash
3131
cat input.json | docker run -i --rm \
3232
-v $(pwd):/app ghcr.io/nextmv-io/runtime/pyomo:latest \
33-
sh -c 'python3 /app/main.py'
33+
sh -c 'pip install -r requirements.txt > /dev/null && python3 /app/main.py'
3434
```
3535

3636
You can also debug the application by running it in a Dev Container. This
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyomo==6.9.5
1+
pyomo==6.10.0
22
nextmv==1.6.2

0 commit comments

Comments
 (0)