Skip to content

Commit 818421d

Browse files
authored
Merge pull request #48 from gogetdata/metarecipe
Meta-recipe support
2 parents 598721d + 97f711d commit 818421d

22 files changed

Lines changed: 5344 additions & 526 deletions

.circleci/config.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,7 @@ workflows:
115115
version: 2
116116
ggd-cli-unit-tests:
117117
jobs:
118-
- test-linux-python2
119118
- test-linux-python3
120-
- test-macos-python2-part1
121-
- test-macos-python2-part2
122119
- test-macos-python3
123120
ggd-cli-nightly-build:
124121
triggers:
@@ -129,8 +126,5 @@ workflows:
129126
only:
130127
- master
131128
jobs:
132-
- test-linux-python2
133129
- test-linux-python3
134-
- test-macos-python2-part1
135-
- test-macos-python2-part2
136130
- test-macos-python3

ggd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.0.2"
1+
__version__ = "1.1.0"
22

ggd/__main__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from .list_installed_pkgs import add_list_installed_packages
99
from .list_pkg_info import add_pkg_info
1010
from .make_bash import add_make_bash
11+
from .make_meta_recipe import add_make_metarecipe
1112
from .predict_path import add_predict_path
1213
from .search import add_search
1314
from .show_env import add_show_env
@@ -57,6 +58,8 @@ def main(args=None):
5758

5859
add_make_bash(sub)
5960

61+
add_make_metarecipe(sub)
62+
6063
add_check_recipe(sub)
6164

6265
args = parser.parse_args(args)

0 commit comments

Comments
 (0)