File tree Expand file tree Collapse file tree 3 files changed +8
-14
lines changed Expand file tree Collapse file tree 3 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -52,16 +52,6 @@ clean:
52
52
-rm -rf build/*
53
53
find . -name generated -type d -prune -exec rm -rf " {}" " ;"
54
54
55
- docenv :
56
- $(PYTHON ) -mvenv docenv
57
- ( \
58
- . docenv/bin/activate; \
59
- pip install -q --upgrade pip; \
60
- pip install -q -r ../test_requirements.txt; \
61
- pip install -q -r ../doc_requirements.txt; \
62
- pip install -q ..; \
63
- )
64
-
65
55
gitwash-update :
66
56
rm -rf source/dev/gitwash
67
57
install -d source/dev/gitwash
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ Five documents usually need to be updated or created for the release PR:
56
56
- The release-notes
57
57
- The ``.mailmap `` file
58
58
- The ``pyproject.toml `` file
59
- - The ``pyproject.setuppy. toml `` file # 1.26.x only
59
+ - The ``pyproject.toml.setuppy `` file # 1.26.x only
60
60
61
61
These changes should be made in an ordinary PR against the maintenance branch.
62
62
The commit message should contain a ``[wheel build] `` directive to test if the
@@ -69,7 +69,7 @@ commit message might be something like::
69
69
- Update 1.20.0-notes.rst.
70
70
- Update .mailmap.
71
71
- Update pyproject.toml
72
- - Update pyproject.setuppy. toml
72
+ - Update pyproject.toml.setuppy
73
73
74
74
[wheel build]
75
75
@@ -111,10 +111,10 @@ index file will need updating.
111
111
Set the release version
112
112
-----------------------
113
113
114
- Edit the ``pyproject.toml `` and ``pyproject.setuppy. toml `` files and set the
114
+ Edit the ``pyproject.toml `` and ``pyproject.toml.setuppy `` files and set the
115
115
release version::
116
116
117
- $ gvim pyproject.toml pyproject.setuppy. toml
117
+ $ gvim pyproject.toml pyproject.toml.setuppy
118
118
119
119
120
120
Check the ``pavement.py `` and ``doc/source/release.rst `` files
@@ -262,6 +262,7 @@ and most patch releases. ``make merge-doc`` clones the ``numpy/doc`` repo into
262
262
263
263
$ git clean -xdfq
264
264
$ git co v1.21.0
265
+ $ rm -rf doc/build # want version to be current
265
266
$ python -m spin docs merge-doc --build
266
267
$ pushd doc/build/merge
267
268
Original file line number Diff line number Diff line change 14
14
15
15
# building and notes
16
16
Paver
17
+
18
+ # uploading release documentation
19
+ packaging
You can’t perform that action at this time.
0 commit comments