Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hot Fix: Resolving Version in Pre-Commit File #547

Merged
merged 4 commits into from
Jul 19, 2022
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
hooks:
- id: black
types: [file, python]
language_version: python3.9
language_version: python3
# Isort: sort import statements
# https://github.com/timothycrosley/isort/blob/develop/.pre-commit-hooks.yaml
# The setup.cfg holds the compatible config for use with black
Expand All @@ -15,7 +15,7 @@ repos:
rev: 5.10.1
hooks:
- id: isort
language_version: python3.9
language_version: python3
# General fixers: format files for white spaces and trailing new lines, warn on debug statements
# https://github.com/pre-commit/pre-commit-hooks#hooks-available
- repo: https://github.com/pre-commit/pre-commit-hooks
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,23 @@ If the ML requirements are too strict (say, you don't want to install tensorflow

Install from pypi: `pip install DataProfiler`


# Contribute
If you want to install the dependencies for developing and updating the code base, be sure to run `pip install -r requirements-dev.txt`

## Pre-Commit
To install `pre-commit` hooks, run the following commands:

```cli
pre-commit install
pre-commit run
```

If you want to run the `pre-commit` fresh over over all the files, run the following:
```cli
pre-commit run --all-files
```

------------------

# What is a Data Profile?
Expand Down