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 1
1
module 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}/"
2
6
class Numpy < FileScraper
3
7
self . name = 'NumPy'
4
8
self . type = 'sphinx'
@@ -26,6 +30,18 @@ class Numpy < FileScraper
26
30
Licensed under the 3-clause BSD License.
27
31
HTML
28
32
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
+
29
45
version '2.0' do
30
46
self . release = '2.0.1'
31
47
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