Skip to content

Commit afa57e8

Browse files
authored
add requirements/locks readme (#64)
1 parent 7b966a8 commit afa57e8

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.pre-commit-config.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: 'v4.0.1'
5+
rev: 'v4.4.0'
66
hooks:
77
# Prevent giant files from being committed.
88
- id: check-added-large-files
@@ -17,24 +17,25 @@ repos:
1717
# Don't commit to master branch.
1818
- id: no-commit-to-branch
1919
- repo: https://github.com/psf/black
20-
rev: '21.6b0'
20+
rev: '23.1.0'
2121
hooks:
2222
- id: black
23-
# Force black to run on whole repo, using settings from pyproject.toml
24-
pass_filenames: false
23+
types: [file, python]
2524
args: [--config=./pyproject.toml, .]
2625
- repo: https://github.com/PyCQA/flake8
27-
rev: '3.9.2'
26+
rev: '6.0.0'
2827
hooks:
2928
# Run flake8.
3029
- id: flake8
3130
args: [--config=./.flake8]
3231
- repo: https://github.com/pycqa/isort
33-
rev: 5.9.1
32+
rev: '5.12.0'
3433
hooks:
3534
- id: isort
3635
name: isort (python)
37-
args: ["--profile", "black", "--filter-files"]
36+
types: [file, python]
37+
args: [--filter-files]
3838
- id: isort
3939
name: isort (cython)
40-
types: [cython]
40+
types: [file, cython]
41+
args: [--filter-files]

requirements/locks/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This directory contains auto-generated `conda-lock` environment files for each `python` distribution supported by `python-stratify`.
2+
3+
Please do not manually edit these files as they will be overritten by the GHA CI workflow.

0 commit comments

Comments
 (0)