Skip to content

Commit f38d0f6

Browse files
authored
prebuilds setup (#68)
1 parent 18fe6d0 commit f38d0f6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ pytestdebug.log
4444

4545
# Codespaces
4646
pythonenv*
47+
env/

.gitpod.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ tasks:
33
- name: initialize
44
init: |
55
mkdir -p .vscode
6-
echo '{"python.defaultInterpreterPath": "/home/gitpod/.conda/envs/pymc-test-py39/bin/python"}' > .vscode/settings.json
6+
echo '{"python.defaultInterpreterPath": "/workspace/pymc-experimental/env/bin/python"}' > .vscode/settings.json
77
conda init bash && source ~/.bashrc
8-
conda env update -f conda-envs/environment-test-py39.yml
9-
conda activate pymc-test-py39
8+
conda env update -f conda-envs/environment-test-py39.yml -p env
9+
conda activate /workspace/pymc-experimental/env
1010
pip install -r requirements-dev.txt
1111
pip install -e .
1212
command: |
13-
conda init bash && echo "conda activate pymc-test-py39" >> ~/.bashrc && source ~/.bashrc && conda activate pymc-test-py39
13+
conda init bash && echo "conda activate /workspace/pymc-experimental/env" >> ~/.bashrc && source ~/.bashrc
1414
1515
vscode:
1616
extensions:

0 commit comments

Comments
 (0)