Compare commits

..

2 Commits

Author SHA1 Message Date
Geoff Bourne
1cf70665bb build: adjust RTD config to explicitly use docs/requirements.txt (#3964) 2026-03-07 14:08:54 -06:00
Geoff Bourne
a543ee7ebc Added NUMA library (#3962) 2026-03-07 08:54:18 -06:00
4 changed files with 5 additions and 7 deletions

View File

@@ -1,19 +1,15 @@
version: 2 version: 2
python:
install:
- requirements: docs/requirements.txt
build: build:
os: ubuntu-24.04 os: ubuntu-24.04
tools: tools:
python: latest python: "3.14"
jobs: jobs:
# We recommend using a requirements file for reproducible builds. # We recommend using a requirements file for reproducible builds.
# This is just a quick example to get started. # This is just a quick example to get started.
# https://docs.readthedocs.io/page/guides/reproducible-builds.html # https://docs.readthedocs.io/page/guides/reproducible-builds.html
install: install:
- pip install zensical - pip install -r docs/requirements.txt
build: build:
html: html:
- zensical build - zensical build

View File

@@ -31,6 +31,7 @@ apk add --no-cache -U \
libpcap \ libpcap \
libwebp \ libwebp \
libcap \ libcap \
numactl \
${EXTRA_ALPINE_PACKAGES} ${EXTRA_ALPINE_PACKAGES}
# Download and install patched knockd # Download and install patched knockd

View File

@@ -27,6 +27,7 @@ apt-get install -y \
lbzip2 \ lbzip2 \
nfs-common \ nfs-common \
libpcap0.8 \ libpcap0.8 \
libnuma1 \
${EXTRA_DEB_PACKAGES} ${EXTRA_DEB_PACKAGES}
# Install Git LFS # Install Git LFS

View File

@@ -22,4 +22,4 @@ PyYAML==6.0.3
pyyaml_env_tag==1.1 pyyaml_env_tag==1.1
six==1.17.0 six==1.17.0
watchdog==6.0.0 watchdog==6.0.0
# zensical @ file:/// zensical==0.0.24