Skip to content

Commit

Permalink
remove need for conda in dev install env
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhswenson committed Jul 23, 2019
1 parent dc57f2a commit 60df608
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devtools/install_recipe_requirements.py
Expand Up @@ -6,7 +6,7 @@
import argparse

# This requires that you have already installed conda and pyyaml
import conda.cli
# import conda.cli
import yaml

def parse_arguments():
Expand Down Expand Up @@ -45,6 +45,7 @@ def recipe_to_requirements(recipe_yaml):
if args.dry:
print(req_file_str)
else:
raise RuntimeError("Only dry run works")
for install in required_packages:
channels = ['conda-forge', 'omnia']
channel_str = sum([['-c', channel] for channel in channels], [])
Expand Down

0 comments on commit 60df608

Please sign in to comment.