Skip to content

Commit

Permalink
Trying something else
Browse files Browse the repository at this point in the history
  • Loading branch information
naswierczek committed Apr 11, 2024
1 parent c6508e9 commit 7141699
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ commands:
description: "Version of sqlalchemy to test against, if specific version required"
default: ""
steps:
- run: python --version > python_version
- run:
command: |
if [ -f venv/bin/activate ]
then
. venv/bin/activate
python --version > python_version
fi
- restore_cache:
key: deps-v9-{{ checksum "python_version" }}-<<parameters.pandas_version>>-<<parameters.extras>>-<<parameters.include_dev_dependencies>>-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "setup.py" }}-{{ checksum "pyproject.toml" }}
- run:
Expand Down

0 comments on commit 7141699

Please sign in to comment.