Skip to content

Commit 9716d20

Browse files
authored
Merge branch 'main' into change-subdomain
2 parents 1428e08 + 807f7c4 commit 9716d20

File tree

5 files changed

+38
-6
lines changed

5 files changed

+38
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Community website CI
1+
name: Community docsite CI
22

33
on:
44
pull_request:

.github/workflows/reusable-nox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Check out repo
2525
uses: actions/checkout@v5
2626
- name: Setup nox
27-
uses: wntrblm/nox@2025.05.01
27+
uses: wntrblm/nox@2025.10.16
2828
with:
2929
python-versions: "${{ matrix.python-versions }}"
3030
- name: "Run nox -s ${{ matrix.session }}"

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ipython_config.py
8585
# pyenv
8686
# For a library or package, you might want to ignore these files since the code is
8787
# intended to run in multiple environments; otherwise, check them in:
88-
# .python-version
88+
.python-version
8989

9090
# pipenv
9191
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -176,3 +176,6 @@ data/.DS_Store
176176
themes/.DS_Store
177177
themes/ansible-community/.DS_Store
178178
themes/ansible-community/sass/.DS_Store
179+
180+
# Nikola / doitdb files
181+
.doit.db.*

requirements.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ libsass
55
# Jinja templating.
66
jinja2
77
# Allows Nikola to load data/*.yaml
8-
ruamel.yaml
8+
ruamel.yaml
9+
# Allows Nikola to be run in "auto" mode for live refresh
10+
aiohttp
11+
watchdog

requirements.txt

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
#
55
# pip-compile --allow-unsafe --output-file=requirements.txt --strip-extras requirements.in
66
#
7+
aiohappyeyeballs==2.6.1
8+
# via aiohttp
9+
aiohttp==3.13.2
10+
# via -r requirements.in
11+
aiosignal==1.4.0
12+
# via aiohttp
13+
attrs==25.4.0
14+
# via aiohttp
715
babel==2.17.0
816
# via nikola
917
blinker==1.9.0
@@ -18,8 +26,14 @@ docutils==0.22
1826
# via nikola
1927
doit==0.36.0
2028
# via nikola
29+
frozenlist==1.8.0
30+
# via
31+
# aiohttp
32+
# aiosignal
2133
idna==3.10
22-
# via requests
34+
# via
35+
# requests
36+
# yarl
2337
importlib-metadata==8.7.0
2438
# via doit
2539
jinja2==3.1.6
@@ -36,6 +50,10 @@ markupsafe==3.0.2
3650
# via
3751
# jinja2
3852
# mako
53+
multidict==6.7.0
54+
# via
55+
# aiohttp
56+
# yarl
3957
natsort==8.4.0
4058
# via nikola
4159
nikola==8.3.3
@@ -44,6 +62,10 @@ piexif==1.1.3
4462
# via nikola
4563
pillow==11.3.0
4664
# via nikola
65+
propcache==0.4.1
66+
# via
67+
# aiohttp
68+
# yarl
4769
pygments==2.19.2
4870
# via nikola
4971
pyrss2gen==1.1
@@ -52,7 +74,7 @@ python-dateutil==2.9.0.post0
5274
# via nikola
5375
requests==2.32.5
5476
# via nikola
55-
ruamel-yaml==0.18.15
77+
ruamel-yaml==0.18.16
5678
# via -r requirements.in
5779
ruamel-yaml-clib==0.2.12
5880
# via ruamel-yaml
@@ -62,6 +84,10 @@ unidecode==1.4.0
6284
# via nikola
6385
urllib3==2.5.0
6486
# via requests
87+
watchdog==6.0.0
88+
# via -r requirements.in
89+
yarl==1.22.0
90+
# via aiohttp
6591
zipp==3.23.0
6692
# via importlib-metadata
6793

0 commit comments

Comments
 (0)