We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affbd0c commit abc59e8Copy full SHA for abc59e8
2 files changed
minecode_pipelines/__init__.py
@@ -8,4 +8,4 @@
8
#
9
10
11
-VERSION = "0.0.1b47"
+VERSION = "0.0.1b55"
minecode_pipelines/pipelines/mine_cran.py
@@ -35,11 +35,12 @@ def steps(cls):
35
cls.check_federatedcode_eligibility,
36
cls.create_federatedcode_working_dir,
37
cls.fetch_federation_config,
38
+ cls.download_cran_db,
39
cls.mine_and_publish_packageurls,
40
cls.delete_working_dir,
41
)
42
- def fetch_cran_db(self):
43
+ def download_cran_db(self):
44
"""
45
Download the full CRAN package database
46
@@ -57,4 +58,4 @@ def packages_count(self):
57
58
59
def mine_packageurls(self):
60
"""Mine Cran PackageURLs from cran package database."""
- cran.mine_cran_packageurls(db_path=self.db_path)
61
+ return cran.mine_cran_packageurls(db_path=self.db_path)
0 commit comments