https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 6ab0c034fa4bb7df30f11ba1fa92a3f47f987bb3 authored by Michael Osthege on 12 January 2023, 19:00:29 UTC
Fix `BaseTrace` and `MultiTrace` typing; remove `add_values`/`remove_values`
Tip revision: 6ab0c03
.gitpod.yml
image: ghcr.io/conda/conda-ci:main-linux-python3.9
tasks:
  - name: initialize
    init: |
      mkdir -p .vscode
      echo '{"python.defaultInterpreterPath": "/workspace/pymc/env/bin/python"}' > .vscode/settings.json
      conda init bash && source ~/.bashrc
      conda env update -f conda-envs/environment-dev.yml -p /workspace/pymc/env
      conda activate /workspace/pymc/env
      pip install -e .
    command: |
      conda init bash && echo "conda activate /workspace/pymc/env" >> ~/.bashrc && source ~/.bashrc

vscode:
  extensions:
    - eamodio.gitlens
    - ms-python.python

github:
  prebuilds:
    # enable for master branch
    master: true
    # enable for other branches (defaults to false)
    branches: true
    # enable for pull requests coming from this repo (defaults to true)
    pullRequests: true
    # enable for pull requests coming from forks (defaults to false)
    pullRequestsFromForks: false
    # add a check to pull requests (defaults to true)
    addCheck: true
    # add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
    addComment: false
    # add a "Review in Gitpod" button to the pull request's description (defaults to false)
    addBadge: false
    # add a label once the prebuild is ready to pull requests (defaults to false)
    addLabel: false
back to top