Skip to content

Commit 3369ca3

Browse files
committed
rename setup.py version file
1 parent 216a9a5 commit 3369ca3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
hooks:
1717
- id: nbqa-black
1818
- id: nbqa-isort
19-
args: [ --profile=black, --project=ydata_profiling ]
19+
args: [ --profile=black, --project=data_profiling ]
2020
- id: nbqa-pyupgrade
2121
args: [ --py36-plus ]
2222
- repo: https://github.com/asottile/pyupgrade
@@ -29,12 +29,12 @@ repos:
2929
hooks:
3030
- id: isort
3131
files: '.*'
32-
args: [ --profile=black, --project=ydata_profiling ]
32+
args: [ --profile=black, --project=data_profiling ]
3333
- repo: https://github.com/mgedmin/check-manifest
3434
rev: "0.47"
3535
hooks:
3636
- id: check-manifest
37-
args: [ "--ignore=src/ydata_profiling/version.py" ]
37+
args: [ "--ignore=src/data_profiling/version.py" ]
3838
stages: [manual]
3939
- repo: https://github.com/PyCQA/flake8
4040
rev: "4.0.1"
@@ -60,8 +60,8 @@ repos:
6060
(?x)(
6161
^tests/|
6262
^docsrc/|
63-
^src/ydata_profiling/utils/common.py|
64-
^src/ydata_profiling/utils/imghdr_patch.py
63+
^src/data_profiling/utils/common.py|
64+
^src/data_profiling/utils/imghdr_patch.py
6565
)
6666
- repo: https://github.com/asottile/blacken-docs
6767
rev: v1.12.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
except FileNotFoundError:
1111
version = "0.0.dev0"
1212

13-
with open(source_root / "src/ydata_profiling/version.py", "w") as version_file:
13+
with open(source_root / "src/data_profiling/version.py", "w") as version_file:
1414
version_file.write(f"__version__ = '{version}'")
1515

1616
setup(

0 commit comments

Comments
 (0)