Skip to content

Commit 80104a2

Browse files
committed
Update minecode-pipeline version to 0.0.1b55
Rename fetch_cran_db to download_cran_db Signed-off-by: ziad hany <[email protected]>
1 parent cd704dd commit 80104a2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

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)

pyproject-minecode_pipelines.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flot.buildapi"
44

55
[project]
66
name = "minecode_pipelines"
7-
version = "0.0.1b54"
7+
version = "0.0.1b55"
88
description = "A library for mining packageURLs and package metadata from ecosystem repositories."
99
readme = "minecode_pipelines/README.rst"
1010
license = { text = "Apache-2.0" }

0 commit comments

Comments
 (0)