Skip to content

Commit abc59e8

Browse files
committed
Update minecode-pipeline version to 0.0.1b55
Rename fetch_cran_db to download_cran_db Signed-off-by: ziad hany <ziadhany2016@gmail.com>
1 parent affbd0c commit abc59e8

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

minecode_pipelines/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
#
99

1010

11-
VERSION = "0.0.1b47"
11+
VERSION = "0.0.1b55"

minecode_pipelines/pipelines/mine_cran.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,12 @@ def steps(cls):
3535
cls.check_federatedcode_eligibility,
3636
cls.create_federatedcode_working_dir,
3737
cls.fetch_federation_config,
38+
cls.download_cran_db,
3839
cls.mine_and_publish_packageurls,
3940
cls.delete_working_dir,
4041
)
4142

42-
def fetch_cran_db(self):
43+
def download_cran_db(self):
4344
"""
4445
Download the full CRAN package database
4546
"""
@@ -57,4 +58,4 @@ def packages_count(self):
5758

5859
def mine_packageurls(self):
5960
"""Mine Cran PackageURLs from cran package database."""
60-
cran.mine_cran_packageurls(db_path=self.db_path)
61+
return cran.mine_cran_packageurls(db_path=self.db_path)

0 commit comments

Comments
 (0)