File tree Expand file tree Collapse file tree 4 files changed +17
-1
lines changed
Expand file tree Collapse file tree 4 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 11module Docs
2+ # Requires downloading the documents to local disk first.
3+ # Go to https://numpy.org/doc/, click "HTML+zip" to download
4+ # (example url: https://numpy.org/doc/2.2/numpy-html.zip),
5+ # then extract into "docs/numpy~#{version}/"
26 class Numpy < FileScraper
37 self . name = 'NumPy'
48 self . type = 'sphinx'
@@ -26,6 +30,18 @@ class Numpy < FileScraper
2630 Licensed under the 3-clause BSD License.
2731 HTML
2832
33+ version '2.2' do
34+ self . release = '2.2'
35+ self . base_url = "https://numpy.org/doc/#{ self . version } /"
36+ options [ :container ] = nil
37+ end
38+
39+ version '2.1' do
40+ self . release = '2.1'
41+ self . base_url = "https://numpy.org/doc/#{ self . version } /"
42+ options [ :container ] = nil
43+ end
44+
2945 version '2.0' do
3046 self . release = '2.0.1'
3147 self . base_url = "https://numpy.org/doc/#{ self . version } /"
Original file line number Diff line number Diff line change 1- https://github.com/numpy/numpy/blob/master /doc/source/_static/numpylogo.svg
1+ https://github.com/numpy/numpy/tree/main /doc/source/_static/favicon
You can’t perform that action at this time.
0 commit comments