diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index e7d8b894d360298e652e5f0849029d540ba571e3..82e5cb57084d229544b8a91b81ea0dfc30dd80a5 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -9,10 +9,7 @@ _BASE_CONDARC = '''\ default_channels: - https://repo.anaconda.com/pkgs/main - https://repo.anaconda.com/pkgs/free - - https://repo.anaconda.com/pkgs/r - - https://repo.anaconda.com/pkgs/pro add_pip_as_python_dependency: false #!final -changeps1: false #!final always_yes: true #!final quiet: true #!final show_channel_urls: true #!final diff --git a/bob/devtools/build.py b/bob/devtools/build.py index 0bbc66d27aadffef9380f4b95d34f685a1012395..cb21a664f726313aad96da6b2cb851a071f08076 100644 --- a/bob/devtools/build.py +++ b/bob/devtools/build.py @@ -288,7 +288,7 @@ def conda_create(conda, name, overwrite, condarc, packages, dry_run, use_local): if not dry_run: # get envdir again - it may just be created! envdir = get_env_directory(conda, name) - destrc = os.path.join(envdir, '.condarc') + destrc = os.path.join(envdir, 'condarc') logger.info('Creating %s...', destrc) with open(destrc, 'w') as f: yaml.dump(condarc, f, indent=2)