Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.devtools
Merge requests
!62
Improve remote connection handling and remove alway_yes when developing locally
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Improve remote connection handling and remove alway_yes when developing locally
fixes
into
master
Overview
3
Commits
2
Pipelines
4
Changes
1
Merged
Amir MOHAMMADI
requested to merge
fixes
into
master
5 years ago
Overview
3
Commits
2
Pipelines
4
Changes
1
Expand
0
0
Merge request reports
Viewing commit
ca24b04f
Prev
Next
Show latest version
1 file
+
2
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ca24b04f
when creating a local development environment, remove the always_yes option
· ca24b04f
Amir MOHAMMADI
authored
5 years ago
bob/devtools/scripts/create.py
+
2
−
0
Options
@@ -141,6 +141,8 @@ def create(name, recipe_dir, python, overwrite, condarc, use_local, config,
conda_config
=
make_conda_config
(
config
,
python
,
append_file
,
condarc_options
)
deps
=
parse_dependencies
(
recipe_dir
,
conda_config
)
# when creating a local development environment, remove the always_yes option
del
condarc_options
[
"
always_yes
"
]
status
=
conda_create
(
conda
,
name
,
overwrite
,
condarc_options
,
deps
,
dry_run
,
use_local
)
echo_normal
(
'
Execute on your shell:
"
conda activate %s
"'
%
name
)
Loading