Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ jobs:

build-documentation:
name: Build wxPython documentation
if: github.event_name == 'push'
runs-on: windows-2022

steps:
Expand All @@ -228,10 +227,10 @@ jobs:
submodules: 'recursive'
fetch-depth: 0

- name: Set up Python 3.9
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.13'
cache: 'pip'

- name: Install Python dependencies
Expand Down
4 changes: 4 additions & 0 deletions etgtools/sphinx_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,10 @@ def CheckSignature(self):
theargs = []

for arg in arguments:

arg = arg.split(':')[0].strip() # Remove the typehint
if arg in ('_from', '_def', '_is'): # Reserved Python keywords we've had to rename
arg = arg[1:]

myarg = arg.split('=')[0].strip()
if myarg:
Expand Down
22 changes: 11 additions & 11 deletions requirements/devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ pytest-xdist
pytest-forked
pytest-timeout

sphinx==2.2.0 ; python_version >= '3.0'
sphinx ; python_version >= '3.0'
sphinx==1.8.5 ; python_version < '3.0'
alabaster<0.7.14
sphinxcontrib-applehelp<1.0.8
sphinxcontrib-devhelp<1.0.6
sphinxcontrib-htmlhelp<2.0.5
sphinxcontrib-jsmath<1.0.2
sphinxcontrib-qthelp<1.0.7
sphinxcontrib-serializinghtml<1.1.10
Jinja2==2.10
markupsafe==1.1.1
doc2dash==2.3.0
alabaster
sphinxcontrib-applehelp
sphinxcontrib-devhelp
sphinxcontrib-htmlhelp
sphinxcontrib-jsmath
sphinxcontrib-qthelp
sphinxcontrib-serializinghtml
Jinja2
markupsafe
doc2dash
beautifulsoup4
attrdict3 ; sys_platform == 'win32'
typing-extensions; python_version < '3.10'
Loading