diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-08-25 02:21:39 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-08-25 02:53:17 +0900 |
commit | 520797a5e8c52f9bdcdcf8cd85484b4c7d0ed21f (patch) | |
tree | 68c6491a291abcdfc0aa6246ec010a5b35deef00 /.circleci | |
parent | a029a8f81deae2828dde26b4b050736dcf4a185b (diff) | |
download | sphinx-git-520797a5e8c52f9bdcdcf8cd85484b4c7d0ed21f.tar.gz |
test: Upgrade python on Circle CI to 3.5
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index f4d4415f1..d349db6e0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,6 +6,6 @@ jobs: working_directory: /sphinx steps: - checkout - - run: /python3.4/bin/pip install -U pip setuptools - - run: /python3.4/bin/pip install -U .[test,websupport] - - run: make test PYTHON=/python3.4/bin/python + - run: /python3.5/bin/pip install -U pip setuptools + - run: /python3.5/bin/pip install -U .[test,websupport] + - run: make test PYTHON=/python3.5/bin/python |