Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/deploy-mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- closed
release:
types:
- published
- published
workflow_dispatch:

permissions:
Expand All @@ -21,18 +21,17 @@ jobs:
(github.event_name == 'pull_request' && github.event.pull_request.merged == true) ||
(github.event_name == 'release' && github.event.release.prerelease == false)
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-depth: 0
ref: ${{ github.event_name == 'pull_request' && 'main' || github.ref }}

- name: Set up Python from pyproject.toml
uses: actions/setup-python@v6
with:
python-version-file: 'pyproject.toml'
python-version-file: "pyproject.toml"

- name: Install package and docs dependencies
run: |
Expand Down Expand Up @@ -68,4 +67,4 @@ jobs:
fi

mike deploy --push --update-aliases $TAG latest -t "$TAG (latest)"
mike set-default --push latest
mike set-default --push latest
4 changes: 2 additions & 2 deletions docs/usage/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Windows you should use
You may have Python installed on your system but should use a [Python Virtual
Environment](https://realpython.com/python-virtual-environments-a-primer/) such as
[Miniconda](https://docs.conda.io/en/latest/miniconda.html) and install and use TopoStats under the Virtual
Environment. The versions of Python supported are Python >=3.8 and so when creating your virtual environment you should
specify this `3.8` as the minimum.
Environment. The versions of Python supported are Python >=3.10 and so when creating your virtual environment you should
specify this `3.10` as the minimum.

## Setting up Conda

Expand Down
Loading