From 649ead3489670f25a0eefe67969b01785c492229 Mon Sep 17 00:00:00 2001 From: James Adams Date: Wed, 29 Jan 2020 11:05:12 -0500 Subject: [PATCH] updated the CircleCI config file to use Python version 3, in case this will help get both the 3.6 and 3.7 environments to pass with tox #53 --- .circleci/config.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 86d1743..f350865 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: # specify the version you desire here # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ - - image: circleci/python:3.7 + - image: circleci/python:3 working_directory: ~/repo @@ -26,9 +26,8 @@ jobs: - run: name: install dependencies command: | -# python3 -m venv venv -# . venv/bin/activate - conda activate + python3 -m venv venv + . venv/bin/activate pip install -e . pip install tox