File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -38,18 +38,20 @@ jobs:
38
38
- name : ' Set up Python'
39
39
uses : actions/setup-python@v4
40
40
with :
41
- python-version : ' 3'
41
+ python-version : ' 3.12 '
42
42
cache : ' pip'
43
43
cache-dependency-path : ' Doc/requirements.txt'
44
44
- name : ' Install build dependencies'
45
45
run : make -C Doc/ venv
46
46
- name : ' Build HTML documentation'
47
47
run : make -C Doc/ SPHINXOPTS="-q" SPHINXERRORHANDLING="-W --keep-going" html
48
48
- name : ' Upload'
49
- uses : actions/upload-artifact@v3
49
+ uses : actions/upload-artifact@v4
50
50
with :
51
51
name : doc-html
52
52
path : Doc/build/html
53
+ include-hidden-files : true
54
+ overwrite : true
53
55
54
56
# Run "doctest" on HEAD as new syntax doesn't exist in the latest stable release
55
57
doctest :
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ Now what can we do with instance objects? The only operations understood by
325
325
instance objects are attribute references. There are two kinds of valid
326
326
attribute names: data attributes and methods.
327
327
328
- *data attributes * correspond to "instance variables" in Smalltalk, and to "data
328
+ *Data attributes * correspond to "instance variables" in Smalltalk, and to "data
329
329
members" in C++. Data attributes need not be declared; like local variables,
330
330
they spring into existence when they are first assigned to. For example, if
331
331
``x `` is the instance of :class: `MyClass ` created above, the following piece of
You can’t perform that action at this time.
0 commit comments