Skip to content

Commit aee66c1

Browse files
committed
Updated paths to stormchecker
1 parent e9ef25d commit aee66c1

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/buildtest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- name: Git clone
2828
uses: actions/checkout@v5
2929
- name: Build from Dockerfile
30-
run: docker build -t movesrwth/stormpy-starter . --build-arg STORMPY_BASE=movesrwth/stormpy:${{ matrix.config.stormpyImg }}
30+
run: docker build -t stormchecker/stormpy-starter . --build-arg STORMPY_BASE=movesrwth/stormpy:${{ matrix.config.stormpyImg }}
3131
- name: Run Docker
32-
run: docker run -d -it --name ci -p 8888:8888 movesrwth/stormpy-starter
32+
run: docker run -d -it --name ci -p 8888:8888 stormchecker/stormpy-starter
3333
- name: Run tests
3434
run: |
3535
docker exec ci bash -c "pip install .[test]; pytest"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# storm-project-starter-python
22
Starter project for the Python API of Storm via Stormpy
33

4-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/moves-rwth/storm-project-starter-python/master?filepath=stormpy_starter.ipynb)
4+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/stormchecker/storm-project-starter-python/master?filepath=stormpy_starter.ipynb)
55

66
## Getting started
77
Before starting, make sure that Storm and stormpy are installed. If not, see the [documentation](https://moves-rwth.github.io/stormpy/installation.html) for details on how to install stormpy.
@@ -27,17 +27,17 @@ The answer should be yes.
2727
## Try out in browser via Jupyterlab
2828
You can also try out the starter project in your browser by using Jupyterlab.
2929

30-
You can use this [Binder link](https://mybinder.org/v2/gh/moves-rwth/storm-project-starter-python/master?filepath=stormpy_starter.ipynb) which starts an interactive Jupyter notebook.
30+
You can use this [Binder link](https://mybinder.org/v2/gh/stormchecker/storm-project-starter-python/master?filepath=stormpy_starter.ipynb) which starts an interactive Jupyter notebook.
3131

3232
### Running Jupyter locally.
3333
You can also start the Jupyterlab locally using [Docker](https://www.docker.com/).
3434
First, build the Docker container with
3535
```
36-
docker build -t movesrwth/stormpy-starter .
36+
docker build -t stormchecker/stormpy-starter .
3737
```
3838
Then start the Docker container with the following command:
3939
```
40-
docker run -it --rm -p 8888:8888 movesrwth/stormpy-starter jupyter notebook --NotebookApp.default_url=/lab/ --ip=0.0.0.0 --port=8888
40+
docker run -it --rm -p 8888:8888 stormchecker/stormpy-starter jupyter notebook --NotebookApp.default_url=/lab/ --ip=0.0.0.0 --port=8888
4141
```
4242
You can find the URL to the notebook in the output.
4343

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424

2525
[project.urls]
26-
Homepage = "https://github.com/moves-rwth/storm-project-starter-python"
26+
Homepage = "https://github.com/stormchecker/storm-project-starter-python"
2727

2828
[project.optional-dependencies]
2929
dev = [

0 commit comments

Comments
 (0)