Skip to content

Commit 0e6445c

Browse files
Version bump to 1.1.3 and docs update.
1 parent 066555d commit 0e6445c

File tree

8 files changed

+4333
-3319
lines changed

8 files changed

+4333
-3319
lines changed

create_docs.sh

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
#!/bin/sh
2-
set -x
32

4-
python3 setup.py build_ext --fcompiler=gnu95 build
5-
6-
unset PYTHONPATH
73
BUILD_DIR=$(find $PWD/build -mindepth 1 -name "lib.*" -type d)
84
export PYTHONPATH=$BUILD_DIR:$PYTHONPATH
9-
pdoc --html -c show_source_code=True --force --output-dir 'docs' pytdlpack
10-
pdoc --html -c show_source_code=True --force --output-dir 'docs' TdlpackIO
5+
6+
VER=$(python -c "import pytdlpack; print(f\"pytdlpack v{pytdlpack.__version__}\")")
7+
8+
pdoc --footer-text "$VER" -o 'docs' pytdlpack
9+
pdoc --footer-text "$VER" -o 'docs' TdlpackIO
10+
11+
touch index.html
12+
echo "<h1>$VER</h1>" >> index.html
13+
echo "<li> <a href=pytdlpack.html>pytdlpack docs</a> </li>" >> index.html
14+
echo "<li> <a href=TdlpackIO.html>TdlpackIO docs</a> </li>" >> index.html
15+
mv -v index.html docs/.

docs/TdlpackIO.html

Lines changed: 1235 additions & 1009 deletions
Large diffs are not rendered by default.

docs/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
<li> <a href=pytdlpack/index.html>pytdlpack docs</a> </li>
1+
<h1>pytdlpack v1.1.3</h1>
2+
<li> <a href=pytdlpack.html>pytdlpack docs</a> </li>
23
<li> <a href=TdlpackIO.html>TdlpackIO docs</a> </li>

docs/pytdlpack.html

Lines changed: 3038 additions & 0 deletions
Large diffs are not rendered by default.

docs/pytdlpack/index.html

Lines changed: 0 additions & 2242 deletions
This file was deleted.

docs/pytdlpack/version.html

Lines changed: 0 additions & 60 deletions
This file was deleted.

docs/search.js

Lines changed: 46 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# ----------------------------------------------------------------------------------------
88
# Definitions
99
# ----------------------------------------------------------------------------------------
10-
VERSION = '1.1.2'
10+
VERSION = '1.1.3'
1111

1212
# ----------------------------------------------------------------------------------------
1313
# Define Fortran compiler options for supported compilers

0 commit comments

Comments
 (0)