From 26c390eb7c554314679250d52f028be7ef57237e Mon Sep 17 00:00:00 2001 From: Carl Beekhuizen Date: Mon, 15 May 2023 16:03:27 -0600 Subject: [PATCH] Fix CircleCI tox env --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 797c0720..4804859e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,18 +5,18 @@ tox_common: &tox_common steps: - checkout - restore_cache: - key: tox-deps3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }} + key: tox-deps4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }} - run: name: install dependencies - command: pip install --user tox + command: pip install tox - run: name: run tox - command: ~/.local/bin/tox + command: tox - save_cache: paths: - .tox - ./eggs - key: tox-deps3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }} + key: tox-deps4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }} orbs: win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor.