Skip to content

Commit 665a559

Browse files
committed
update pre-commit reqs
1 parent d9116c2 commit 665a559

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 22.3.0
3+
rev: 23.12.0
44
hooks:
55
- id: black
66
- repo: https://github.com/pycqa/isort
7-
rev: 5.10.1
7+
rev: 5.13.2
88
hooks:
99
- id: isort
1010
name: isort (python)

benchmarks/setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,10 @@
55
setup(
66
name="benchmarks",
77
packages=find_packages(),
8+
package_data={
9+
# If any package contains *.txt or *.json files, include them:
10+
"": ["*.csv"],
11+
# And include any files found in the 'mypackage/data' directory:
12+
"benchmarks": ["datasets/*"],
13+
},
814
)

0 commit comments

Comments
 (0)