小编Cur*_*rzy的帖子

在circleci中使用Python 3.6.0

我正在使用python 3.6启动新项目,我想将circleci附加到我的项目中.

我的circle.yml是

machine:
  timezone:
    Asia/Seoul

  python:
    version: 3.6.0

dependencies:
  pre:
    - pip install -r requirements/ci.txt

test:
  post:
    - python manage.py test
Run Code Online (Sandbox Code Playgroud)

和circleci错误

python-build: definition not found: 3.6.0

The following versions contain `3.6.0' in the name:
  3.6.0b1

See all available versions with `pyenv install --list'.

If the version you need is missing, try upgrading pyenv:

  cd /opt/circleci/.pyenv/plugins/python-build/../.. && git pull && cd -

((if (or (= "3.6.0" "system") (pyenv versions --bare | grep -x -q "'3.6.0'")) (pyenv global "3.6.0") (chain-and …
Run Code Online (Sandbox Code Playgroud)

python integration circleci pyenv python-3.6

4
推荐指数
1
解决办法
1358
查看次数

标签 统计

circleci ×1

integration ×1

pyenv ×1

python ×1

python-3.6 ×1