Skip to content

Commit 2109ada

Browse files
committed
Removed CHM help build/dist
1 parent 28d71cb commit 2109ada

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ pylint_report.txt
3737

3838
# Sphinx documentation
3939
docs/build/
40-
plotpy.chm
4140

4241
# Generated cython c file
4342
src/contour2d.c

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ test = ["pytest", "pytest-cov", "pytest-qt", "pytest-xvfb"]
6060
include = ["plotpy*"]
6161

6262
[tool.setuptools.package-data]
63-
"*" = ["*.png", "*.svg", "*.mo", "*.chm", "*.cfg", "*.toml", "*.dcm", "*.ui"]
63+
"*" = ["*.png", "*.svg", "*.mo", "*.cfg", "*.toml", "*.dcm", "*.ui"]
6464

6565
[tool.setuptools.dynamic]
6666
version = { attr = "plotpy.__version__" }

scripts/build_doc.bat

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ call %FUNC% SetPythonPath
1515
call %FUNC% UsePython
1616
cd %SCRIPTPATH%\..
1717
%PYTHON% doc\update_requirements.py
18-
set PATH=C:\Program Files\HTML Help Workshop;C:\Program Files (x86)\HTML Help Workshop;%PATH%
19-
sphinx-build -b htmlhelp doc build\doc
20-
hhc build\doc\%LIBNAME%.hhp
21-
copy build\doc\*.chm %MODNAME%
2218
sphinx-build -b html doc build\doc
19+
start build\doc\index.html
2320
call %FUNC% EndOfScript

scripts/clean_up.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ cd %SCRIPTPATH%\..\
1313

1414
@REM Removing files/directories related to Python/doc build process
1515
if exist %LIBNAME%.egg-info ( rmdir /s /q %LIBNAME%.egg-info )
16+
if exist %LIBNAME%\%LIBNAME%.chm ( del /q %LIBNAME%\%LIBNAME%.chm )
1617
if exist MANIFEST ( del /q MANIFEST )
1718
if exist build ( rmdir /s /q build )
1819
if exist dist ( rmdir /s /q dist )

0 commit comments

Comments
 (0)