From 49c35db4ef08a06d9ad05c506b210322766131af Mon Sep 17 00:00:00 2001 From: Joerg Schaarschmidt Date: Wed, 12 Nov 2025 13:54:05 +0100 Subject: [PATCH 1/2] Fix micromamba create command syntax --- docs/installation/server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/server.rst b/docs/installation/server.rst index 71f33c1..8a77085 100644 --- a/docs/installation/server.rst +++ b/docs/installation/server.rst @@ -22,7 +22,7 @@ After installing, make sure you have the **micromamba** command available in you .. code-block:: bash # Create a new environment for simstack client: - micromamba create --name=simstack_server_v6 simstackserver -c https://repo.prefix.dev/simstack simstackserver -c conda-forge + micromamba create --name=simstack_server_v6 -c https://repo.prefix.dev/simstack simstackserver -c conda-forge # Activate the environment to see if it exists micromamba activate simstack_server_v6 From f054b1357e2ed885a39ace428fe71ec7fbae149d Mon Sep 17 00:00:00 2001 From: Joerg Schaarschmidt Date: Wed, 12 Nov 2025 14:20:08 +0100 Subject: [PATCH 2/2] Update ci workflow python version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ae928d..18a1617 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Install Python uses: actions/setup-python@v1 with: - python-version: 3.8 + python-version: 3.14 - name: Install dependencies run: | pip install --upgrade -r requirements.txt