Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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
6 changes: 4 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
with:
python-version: '3.13'

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run RST Formatter
run: |
bin/format_rst_file.py --check *.rst
run: ./bin/format_rst_file.py $(git ls-files '*.rst')
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
path = _spack_root
url = https://github.com/spack/spack.git
branch = releases/v1.0
[submodule "_spack_packages"]
path = _spack_packages
url = https://github.com/spack/spack-packages
branch = releases/v2025.07
5 changes: 4 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@ build:
# golang: "1.20"
apt_packages:
- graphviz
jobs:
post_checkout:
- git fetch --unshallow || true # get accurate "Last updated on" info

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: conf.py
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
# builder: "dirhtml"
# Fail on all warnings to avoid broken references
# fail_on_warning: true
fail_on_warning: true

# We need to include the _spack_root submodule to get the logo image
submodules:
Expand Down
1 change: 1 addition & 0 deletions _spack_packages
Submodule _spack_packages added at 4ff573
4 changes: 2 additions & 2 deletions _templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

{%- block extrahead %}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S0PQ7WV75K"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3N7XQV9Z1J"></script>
Comment thread
haampie marked this conversation as resolved.
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S0PQ7WV75K');
gtag('config', 'G-3N7XQV9Z1J');
</script>
{%- if READTHEDOCS %}
<meta name="readthedocs-addons-api-version" content="1">
Expand Down
Loading
Loading