From 90b3c77ae19a0dbdd3a55c1e1820b86b7475126e Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Fri, 6 Jun 2025 13:44:13 +0200 Subject: [PATCH] doc CD: replaced dummy database by a partial real database for rendering examples --- .github/workflows/docs.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b74661d..49273a1 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,9 +19,11 @@ jobs: python-version: "3.x" - name: Install gaspype and dependencies run: | - echo "Create a dummy file to ensure gaspype does't crash" - mkdir -p src/gaspype/data - printf 'gapy\x00\x00\x00\x00' > src/gaspype/data/therm_data.bin + #echo "Create a dummy file to ensure gaspype does't crash" + #mkdir -p src/gaspype/data + #printf 'gapy\x00\x00\x00\x00' > src/gaspype/data/therm_data.bin + python thermo_data/combine_data.py thermo_data/combined_data.yaml thermo_data/nasa9*.yaml + python thermo_data/compile_to_bin.py thermo_data/combined_data.yaml src/gaspype/data/therm_data.bin pip install .[doc_build] python -m ipykernel install --user --name temp_kernel --display-name "Python (temp_kernel)" - name: Generate Docs