Skip to content

Commit caf8dda

Browse files
committed
numpy: add new version 2.1 and 2.2
1 parent 7579a06 commit caf8dda

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

lib/docs/scrapers/numpy.rb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
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}/"
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}/"

0 commit comments

Comments
 (0)