Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ linux_task:
- uname -r
populate_script:
- export CONDA_OVERRIDE_LINUX="$(uname -r | cut -d'+' -f1)"
- conda-lock --mamba --platform linux-64 --file ${YAML_FILE}
- conda-lock --kind=explicit --mamba --platform linux-64 --file ${YAML_FILE}
- mamba create --name ${ENV_NAME} --quiet --file conda-linux-64.lock
- conda info --envs
test_script:
- source activate ${ENV_NAME}
- python run_test.py
- python run_test.py
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v4.1.0'
rev: 'v4.2.0'
hooks:
# Prevent giant files from being committed.
- id: check-added-large-files
Expand All @@ -17,7 +17,7 @@ repos:
# Don't commit to master branch.
- id: no-commit-to-branch
- repo: https://github.com/psf/black
rev: '22.1.0'
rev: '22.3.0'
hooks:
- id: black
# Force black to run on whole repo, using settings from pyproject.toml
Expand Down