Skip to content

Commit

Permalink
flake fixes and messed up cache
Browse files Browse the repository at this point in the history
  • Loading branch information
scopatz committed Oct 23, 2019
1 parent e87782f commit bf0329b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
- checkout
- restore_cache:
keys:
- miniconda-v1-{{ checksum "ci/environment-elm.yml" }}
- miniconda-v2-{{ checksum "ci/environment-elm.yml" }}
- run:
name: install miniconda
command: |
Expand All @@ -248,7 +248,7 @@ jobs:
conda env list
conda list ${ENV_NAME}
- save_cache:
key: miniconda-v1-{{ checksum "ci/environment-elm.yml" }}
key: miniconda-v2-{{ checksum "ci/environment-elm.yml" }}
paths:
- "/home/circleci/miniconda"
- run:
Expand Down
3 changes: 0 additions & 3 deletions xonsh/prompt/times.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import time
import builtins

import xonsh.tools as xt
import xonsh.platform as xp


def _localtime():
pf = builtins.__xonsh__.env.get("PROMPT_FIELDS", {})
Expand Down
1 change: 0 additions & 1 deletion xonsh/webconfig/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import sys
import json
import socket
import webbrowser
import socketserver
from http import server
from pprint import pprint
Expand Down

0 comments on commit bf0329b

Please sign in to comment.