{ "info": { "author": "Anthony Sottile", "author_email": "asottile@umich.edu", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "[![Build Status](https://asottile.visualstudio.com/asottile/_apis/build/status/pre-commit.pre-commit-hooks?branchName=main)](https://asottile.visualstudio.com/asottile/_build/latest?definitionId=17&branchName=main)\n[![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/asottile/asottile/17/main.svg)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=17&branchName=main)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pre-commit/pre-commit-hooks/main.svg)](https://results.pre-commit.ci/latest/github/pre-commit/pre-commit-hooks/main)\n\npre-commit-hooks\n================\n\nSome out-of-the-box hooks for pre-commit.\n\nSee also: https://github.com/pre-commit/pre-commit\n\n\n### Using pre-commit-hooks with pre-commit\n\nAdd this to your `.pre-commit-config.yaml`\n\n```yaml\n- repo: https://github.com/pre-commit/pre-commit-hooks\n rev: v4.2.0 # Use the ref you want to point at\n hooks:\n - id: trailing-whitespace\n # - id: ...\n```\n\n### Hooks available\n\n#### `check-added-large-files`\nPrevent giant files from being committed.\n - Specify what is \"too large\" with `args: ['--maxkb=123']` (default=500kB).\n - Limits checked files to those indicated as staged for addition by git.\n - If `git-lfs` is installed, lfs files will be skipped\n (requires `git-lfs>=2.2.1`)\n - `--enforce-all` - Check all listed files not just those staged for\n addition.\n\n#### `check-ast`\nSimply check whether files parse as valid python.\n\n#### `check-builtin-literals`\nRequire literal syntax when initializing empty or zero Python builtin types.\n - Allows calling constructors with positional arguments (e.g., `list('abc')`).\n - Allows calling constructors from the `builtins` (`__builtin__`) namespace (`builtins.list()`).\n - Ignore this requirement for specific builtin types with `--ignore=type1,type2,\u2026`.\n - Forbid `dict` keyword syntax with `--no-allow-dict-kwargs`.\n\n#### `check-case-conflict`\nCheck for files with names that would conflict on a case-insensitive filesystem like MacOS HFS+ or Windows FAT.\n\n#### `check-docstring-first`\nChecks for a common error of placing code before the docstring.\n\n#### `check-executables-have-shebangs`\nChecks that non-binary executables have a proper shebang.\n\n#### `check-json`\nAttempts to load all json files to verify syntax.\n\n#### `check-merge-conflict`\nCheck for files that contain merge conflict strings.\n\n#### `check-shebang-scripts-are-executable`\nChecks that scripts with shebangs are executable.\n\n#### `check-symlinks`\nChecks for symlinks which do not point to anything.\n\n#### `check-toml`\nAttempts to load all TOML files to verify syntax.\n\n#### `check-vcs-permalinks`\nEnsures that links to vcs websites are permalinks.\n - `--additional-github-domain DOMAIN` - Add check for specified domain.\n Can be repeated multiple times. for example, if your company uses\n GitHub Enterprise you may use something like\n `--additional-github-domain github.example.com`\n\n#### `check-xml`\nAttempts to load all xml files to verify syntax.\n\n#### `check-yaml`\nAttempts to load all yaml files to verify syntax.\n - `--allow-multiple-documents` - allow yaml files which use the\n [multi-document syntax](http://www.yaml.org/spec/1.2/spec.html#YAML)\n - `--unsafe` - Instead of loading the files, simply parse them for syntax.\n A syntax-only check enables extensions and unsafe constructs which would\n otherwise be forbidden. Using this option removes all guarantees of\n portability to other yaml implementations.\n Implies `--allow-multiple-documents`.\n\n#### `debug-statements`\nCheck for debugger imports and py37+ `breakpoint()` calls in python source.\n\n#### `destroyed-symlinks`\nDetects symlinks which are changed to regular files with a content of a path\nwhich that symlink was pointing to.\nThis usually happens on Windows when a user clones a repository that has\nsymlinks but they do not have the permission to create symlinks.\n\n#### `detect-aws-credentials`\nChecks for the existence of AWS secrets that you have set up with the AWS CLI.\nThe following arguments are available:\n- `--credentials-file CREDENTIALS_FILE` - additional AWS CLI style\n configuration file in a non-standard location to fetch configured\n credentials from. Can be repeated multiple times.\n- `--allow-missing-credentials` - Allow hook to pass when no credentials are detected.\n\n#### `detect-private-key`\nChecks for the existence of private keys.\n\n#### `double-quote-string-fixer`\nThis hook replaces double quoted strings with single quoted strings.\n\n#### `end-of-file-fixer`\nMakes sure files end in a newline and only a newline.\n\n#### `fix-byte-order-marker`\nremoves UTF-8 byte order marker\n\n#### `fix-encoding-pragma`\nAdd `# -*- coding: utf-8 -*-` to the top of python files.\n - To remove the coding pragma pass `--remove` (useful in a python3-only codebase)\n\n#### `file-contents-sorter`\nSort the lines in specified files (defaults to alphabetical).\nYou must provide list of target files as input to it.\nNote that this hook WILL remove blank lines and does NOT respect any comments.\n\nThe following arguments are available:\n- `--ignore-case` - fold lower case to upper case characters.\n- `--unique` - ensure each line is unique.\n\n#### `forbid-new-submodules`\nPrevent addition of new git submodules.\n\n#### `mixed-line-ending`\nReplaces or checks mixed line ending.\n - `--fix={auto,crlf,lf,no}`\n - `auto` - Replaces automatically the most frequent line ending. This is the default argument.\n - `crlf`, `lf` - Forces to replace line ending by respectively CRLF and LF.\n - This option isn't compatible with git setup check-in LF check-out CRLF as git smudge this later than the hook is invoked.\n - `no` - Checks if there is any mixed line ending without modifying any file.\n\n#### `name-tests-test`\nAssert that files in tests/ end in `_test.py`.\n - Use `args: ['--django']` to match `test*.py` instead.\n\n#### `no-commit-to-branch`\nProtect specific branches from direct checkins.\n - Use `args: [--branch, staging, --branch, main]` to set the branch.\n Both `main` and `master` are protected by default if no branch argument is set.\n - `-b` / `--branch` may be specified multiple times to protect multiple\n branches.\n - `-p` / `--pattern` can be used to protect branches that match a supplied regex\n (e.g. `--pattern, release/.*`). May be specified multiple times.\n\nNote that `no-commit-to-branch` is configured by default to [`always_run`](https://pre-commit.com/#config-always_run).\nAs a result, it will ignore any setting of [`files`](https://pre-commit.com/#config-files),\n[`exclude`](https://pre-commit.com/#config-exclude), [`types`](https://pre-commit.com/#config-types)\nor [`exclude_types`](https://pre-commit.com/#config-exclude_types).\nSet [`always_run: false`](https://pre-commit.com/#config-always_run) to allow this hook to be skipped according to these\nfile filters. Caveat: In this configuration, empty commits (`git commit --allow-empty`) would always be allowed by this hook.\n\n#### `pretty-format-json`\nChecks that all your JSON files are pretty. \"Pretty\"\nhere means that keys are sorted and indented. You can configure this with\nthe following commandline options:\n - `--autofix` - automatically format json files\n - `--indent ...` - Control the indentation (either a number for a number of spaces or a string of whitespace). Defaults to 2 spaces.\n - `--no-ensure-ascii` preserve unicode characters instead of converting to escape sequences\n - `--no-sort-keys` - when autofixing, retain the original key ordering (instead of sorting the keys)\n - `--top-keys comma,separated,keys` - Keys to keep at the top of mappings.\n\n#### `requirements-txt-fixer`\nSorts entries in requirements.txt and removes incorrect entry for `pkg-resources==0.0.0`\n\n#### `sort-simple-yaml`\nSorts simple YAML files which consist only of top-level\nkeys, preserving comments and blocks.\n\nNote that `sort-simple-yaml` by default matches no `files` as it enforces a\nvery specific format. You must opt in to this by setting [`files`](https://pre-commit.com/#config-files), for example:\n\n```yaml\n - id: sort-simple-yaml\n files: ^config/simple/\n```\n\n\n#### `trailing-whitespace`\nTrims trailing whitespace.\n - To preserve Markdown [hard linebreaks](https://github.github.com/gfm/#hard-line-break)\n use `args: [--markdown-linebreak-ext=md]` (or other extensions used\n by your markdownfiles). If for some reason you want to treat all files\n as markdown, use `--markdown-linebreak-ext=*`.\n - By default, this hook trims all whitespace from the ends of lines.\n To specify a custom set of characters to trim instead, use `args: [--chars,\"\"]`.\n\n### Deprecated / replaced hooks\n\n- `check-byte-order-marker`: instead use fix-byte-order-marker\n\n### As a standalone package\n\nIf you'd like to use these hooks, they're also available as a standalone package.\n\nSimply `pip install pre-commit-hooks`\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pre-commit/pre-commit-hooks", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pre-commit-hooks", "package_url": "https://pypi.org/project/pre-commit-hooks/", "platform": null, "project_url": "https://pypi.org/project/pre-commit-hooks/", "project_urls": { "Homepage": "https://github.com/pre-commit/pre-commit-hooks" }, "release_url": "https://pypi.org/project/pre-commit-hooks/4.2.0/", "requires_dist": [ "ruamel.yaml (>=0.15)", "toml" ], "requires_python": ">=3.7", "summary": "Some out-of-the-box hooks for pre-commit.", "version": "4.2.0", "yanked": false, "yanked_reason": null }, "last_serial": 13433090, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "04526b9c4adc89b6e5648dd580c13ec5", "sha256": "6d07f20c26d69c86f242398dbe9685426ddf69f1fd02a798713adf3fade1cc20" }, "downloads": -1, "filename": "pre_commit_hooks-0.1.0.tar.gz", "has_sig": false, "md5_digest": "04526b9c4adc89b6e5648dd580c13ec5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3209, "upload_time": "2014-06-07T21:53:48", "upload_time_iso_8601": "2014-06-07T21:53:48.495241Z", "url": "https://files.pythonhosted.org/packages/85/80/46ae73ab34ff2cfc46f8f05034b23b8aa426a6caebe1c8442a968e770a57/pre_commit_hooks-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "e40c5f6e119fd80a1159790587e580ff", "sha256": "fc2418964f6cc60c9edd542f99fd1ff0543949527785816fbec6f6e5b5770de0" }, "downloads": -1, "filename": "pre_commit_hooks-0.1.1.tar.gz", "has_sig": false, "md5_digest": "e40c5f6e119fd80a1159790587e580ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3305, "upload_time": "2014-06-20T00:53:41", "upload_time_iso_8601": "2014-06-20T00:53:41.663905Z", "url": "https://files.pythonhosted.org/packages/2a/d4/ca4bd4e3c0d396886937dab7c883db2585f14c77acb52f62849e19daca7b/pre_commit_hooks-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "757a29c3387706a7b11852f82e4bf217", "sha256": "3135540908612c1fb9a23bdacd9e88603281d24d11181c5a270121e2e911580c" }, "downloads": -1, "filename": "pre_commit_hooks-0.2.0.tar.gz", "has_sig": false, "md5_digest": "757a29c3387706a7b11852f82e4bf217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3421, "upload_time": "2014-08-20T00:32:37", "upload_time_iso_8601": "2014-08-20T00:32:37.460821Z", "url": "https://files.pythonhosted.org/packages/89/e1/2f33047e17a06f18ace5df08b959e75672ec071b054e417e13c84dd15e0a/pre_commit_hooks-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "6b4846091b108a1951d81a589a2db56a", "sha256": "b8c7fa3b529e075c18a7354870f3ff23a5a818d5c0b55d7b07ab084217942bd3" }, "downloads": -1, "filename": "pre_commit_hooks-0.3.0.tar.gz", "has_sig": false, "md5_digest": "6b4846091b108a1951d81a589a2db56a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3636, "upload_time": "2014-08-22T18:11:53", "upload_time_iso_8601": "2014-08-22T18:11:53.377965Z", "url": "https://files.pythonhosted.org/packages/ac/36/03208e7def8318f12417d30a8bee76c4d36eae2bef0756c82de29fc8eca6/pre_commit_hooks-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "4ee84c87ab926303c85d9210de6e64a0", "sha256": "5977ade49d52f02461975f3a610e56fd09844ba631469b138ad2e1808df8c9d9" }, "downloads": -1, "filename": "pre_commit_hooks-0.4.0.tar.gz", "has_sig": false, "md5_digest": "4ee84c87ab926303c85d9210de6e64a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6148, "upload_time": "2015-02-22T16:40:05", "upload_time_iso_8601": "2015-02-22T16:40:05.617130Z", "url": "https://files.pythonhosted.org/packages/ee/ba/bb38a73e51e11303faa5408f4b64b527a90b44a5ee5fcb18eee9cbd2922b/pre_commit_hooks-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "8817eba1e8362230c5acbca97eae011d", "sha256": "d700bbc949bbc1cb47d3f41e26770950cb1ec2b880df216dce74c7eef3615d8b" }, "downloads": -1, "filename": "pre_commit_hooks-0.4.1.tar.gz", "has_sig": false, "md5_digest": "8817eba1e8362230c5acbca97eae011d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6191, "upload_time": "2015-03-08T19:33:47", "upload_time_iso_8601": "2015-03-08T19:33:47.331535Z", "url": "https://files.pythonhosted.org/packages/53/bb/95bdab796899bb4e7c9d5712b0083c73b817fb3439b6821baf0b672ca1e4/pre_commit_hooks-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "ef4422fbca105a9c67f55d353b0495cd", "sha256": "5741df012d817c2686dd3b3166e0f5f81fc156c934c0bf2797c498b2b18a421e" }, "downloads": -1, "filename": "pre_commit_hooks-0.4.2.tar.gz", "has_sig": false, "md5_digest": "ef4422fbca105a9c67f55d353b0495cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7636, "upload_time": "2015-05-31T21:03:29", "upload_time_iso_8601": "2015-05-31T21:03:29.481432Z", "url": "https://files.pythonhosted.org/packages/5d/5e/0e791a9d7cd6376ffcaa29f73f9acc53bf7bcda8c0faef550fe7e22108ae/pre_commit_hooks-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "ee66c60e1c3d2ab09d9c838b830e99f1", "sha256": "2a519b5b5f9c50e8fe58d4606cd826efaf99e74ddb39e2a59aab7dfb2de2864d" }, "downloads": -1, "filename": "pre_commit_hooks-0.5.0.tar.gz", "has_sig": false, "md5_digest": "ee66c60e1c3d2ab09d9c838b830e99f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9807, "upload_time": "2016-04-05T17:53:32", "upload_time_iso_8601": "2016-04-05T17:53:32.062173Z", "url": "https://files.pythonhosted.org/packages/52/f9/03f062352bae19488cda6a9d285448d04d58303d44d398e3dbe978416dba/pre_commit_hooks-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "9f4cd5adf8cb08e987d6d46df7fdf88b", "sha256": "72b50d55bbdb4598332398513d092a89be8aca66898b1e035f10479a6df6116d" }, "downloads": -1, "filename": "pre_commit_hooks-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "9f4cd5adf8cb08e987d6d46df7fdf88b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21066, "upload_time": "2016-05-16T16:13:02", "upload_time_iso_8601": "2016-05-16T16:13:02.289731Z", "url": "https://files.pythonhosted.org/packages/d1/01/25c8fbba3d0850165504a3bd66b967e77f30aa5376ac9b40cd2af1cb9750/pre_commit_hooks-0.5.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30b6267f2ab536f20062f905767a02e9", "sha256": "61a2490e92407f88beaffd1c804cd099e52fc9ceba14fd9c82f7b468fbe36639" }, "downloads": -1, "filename": "pre_commit_hooks-0.5.1.tar.gz", "has_sig": false, "md5_digest": "30b6267f2ab536f20062f905767a02e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10497, "upload_time": "2016-05-16T16:13:11", "upload_time_iso_8601": "2016-05-16T16:13:11.552568Z", "url": "https://files.pythonhosted.org/packages/08/3f/6a16802f5a962cf586742d556c6c508cf1959fb8877b56f47ef1d00d802d/pre_commit_hooks-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "70aa687197fca7f175e595b0b41f0163", "sha256": "806160cb3cb060c449cb89ba197199046a1a4b408f4b3e29373c3d2c58959fd9" }, "downloads": -1, "filename": "pre_commit_hooks-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "70aa687197fca7f175e595b0b41f0163", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21715, "upload_time": "2016-08-12T17:23:43", "upload_time_iso_8601": "2016-08-12T17:23:43.581158Z", "url": "https://files.pythonhosted.org/packages/e7/f2/ea20755a900a99a698bd2c82a814a5a58ec71bb03120af69b255a7d9db29/pre_commit_hooks-0.6.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79c5423fdb4ea3c666c9b05b28f7e9d8", "sha256": "4c00122b65aa5d8812302c716279d17f9dffa79c5195f09957bbc0ed05f75f13" }, "downloads": -1, "filename": "pre_commit_hooks-0.6.0.tar.gz", "has_sig": false, "md5_digest": "79c5423fdb4ea3c666c9b05b28f7e9d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10595, "upload_time": "2016-08-12T17:23:46", "upload_time_iso_8601": "2016-08-12T17:23:46.553410Z", "url": "https://files.pythonhosted.org/packages/ce/4b/03da8c648c82715de9be4a533ba4a6b2452972c9cb9d438cc78abd4ebeb2/pre_commit_hooks-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "cdc57ee9b27beebd5d3e47a1b9eeb771", "sha256": "793b4677bd6506af3a7b5e84879b46991b2ae3c6659aaaa7ad5c620d7d259004" }, "downloads": -1, "filename": "pre_commit_hooks-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cdc57ee9b27beebd5d3e47a1b9eeb771", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22349, "upload_time": "2016-11-30T18:40:24", "upload_time_iso_8601": "2016-11-30T18:40:24.878403Z", "url": "https://files.pythonhosted.org/packages/28/5d/c94b55f4ead929965256a497d56ead81b5528dd9630231b86707be1accc1/pre_commit_hooks-0.6.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3df4dee334ee73d7cdd6b6ec08fe4f7", "sha256": "c4c10edc8e0eeca0bb2259bb2a61443d1ddb3b021bdadfd1f9aa84a8811d5f23" }, "downloads": -1, "filename": "pre_commit_hooks-0.6.1.tar.gz", "has_sig": false, "md5_digest": "d3df4dee334ee73d7cdd6b6ec08fe4f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11383, "upload_time": "2016-11-30T18:40:27", "upload_time_iso_8601": "2016-11-30T18:40:27.561236Z", "url": "https://files.pythonhosted.org/packages/f2/35/b8bc05af561f410cee21a21952cf3799d4010fb1e1c33c252fa662b3bac1/pre_commit_hooks-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "82cca3679de27ac2f5846fc5a78ed5a6", "sha256": "58b9d767c93eeb6a74f8ff75395a34b7e955af0e9725ba1365b1c0232b5e152c" }, "downloads": -1, "filename": "pre_commit_hooks-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82cca3679de27ac2f5846fc5a78ed5a6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22918, "upload_time": "2017-01-22T02:33:06", "upload_time_iso_8601": "2017-01-22T02:33:06.941079Z", "url": "https://files.pythonhosted.org/packages/ca/fe/a80a5dc6bb1cb084a742663a6c30e0cf240019cd36d29df8a0000d87a3bb/pre_commit_hooks-0.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c588aad1567d91f25add75ae83a51ea", "sha256": "b8e37ccfbe9ed5b272c1e199675bc277abd91953d29d9361f987d515ed643133" }, "downloads": -1, "filename": "pre_commit_hooks-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0c588aad1567d91f25add75ae83a51ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11912, "upload_time": "2017-01-22T02:33:08", "upload_time_iso_8601": "2017-01-22T02:33:08.984404Z", "url": "https://files.pythonhosted.org/packages/fc/01/e817f275b7d9cbe7cc0a1032e4c29641aec4227709466b30f932ac96add9/pre_commit_hooks-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "113ada4c2d8fd2754a7e900dff4149a7", "sha256": "17150268018568c188603270b944548cd471448f9753e8a553f09e8f4cb0d0be" }, "downloads": -1, "filename": "pre_commit_hooks-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "113ada4c2d8fd2754a7e900dff4149a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22952, "upload_time": "2017-02-07T18:01:09", "upload_time_iso_8601": "2017-02-07T18:01:09.513661Z", "url": "https://files.pythonhosted.org/packages/90/40/b95bc24a7cac54523993feaea82a0f078a9f3d49e7a8805a6b0901f1c907/pre_commit_hooks-0.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47741baf866be53f98c5be8721463ce7", "sha256": "f2465e6ff9c6a0a7f3c4d1439492951cf5a9846a73e3473c9aed65b09c4285c8" }, "downloads": -1, "filename": "pre_commit_hooks-0.7.1.tar.gz", "has_sig": false, "md5_digest": "47741baf866be53f98c5be8721463ce7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12067, "upload_time": "2017-02-07T18:01:11", "upload_time_iso_8601": "2017-02-07T18:01:11.661969Z", "url": "https://files.pythonhosted.org/packages/24/7f/652195face7ead98c0a37535558abbe62102e65aacc569d060ef5daccc84/pre_commit_hooks-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e5335d4f3c3e34a93db691ed243888c8", "sha256": "868443918daecbfba6c2e27489da56c8dd9290b9c98c7d40202479f572f8cc5a" }, "downloads": -1, "filename": "pre_commit_hooks-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e5335d4f3c3e34a93db691ed243888c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23710, "upload_time": "2017-06-06T21:27:12", "upload_time_iso_8601": "2017-06-06T21:27:12.375964Z", "url": "https://files.pythonhosted.org/packages/11/81/8f28182b8a5fd44dc46e78c6ec3d72e64e51a985236834c7b84d8b843484/pre_commit_hooks-0.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4380e0dcdfb51171cbc74802964108e0", "sha256": "3439046665ad9f30133222ebe22e37b6c22ae8c148e1861c6188d4e6e0bf63cc" }, "downloads": -1, "filename": "pre_commit_hooks-0.8.0.tar.gz", "has_sig": false, "md5_digest": "4380e0dcdfb51171cbc74802964108e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12083, "upload_time": "2017-06-06T21:27:14", "upload_time_iso_8601": "2017-06-06T21:27:14.551116Z", "url": "https://files.pythonhosted.org/packages/92/ed/fb528e3b452a77d458f4e5b344855af772bb4d8edd615bd81169b9b0e40e/pre_commit_hooks-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "19195e01c091cbe92c49af9432a6da59", "sha256": "9887417511015fcb9db9bfddae23b61b0aa97f05f6788152c8966ccf6bddf19b" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19195e01c091cbe92c49af9432a6da59", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26170, "upload_time": "2017-07-03T04:21:41", "upload_time_iso_8601": "2017-07-03T04:21:41.435385Z", "url": "https://files.pythonhosted.org/packages/39/00/c119888ae524d534a50f6f615957a1bef800daad6a4236e7948a969fec0c/pre_commit_hooks-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd0a4fe1a23bd27873a6a72759ede759", "sha256": "e7bba05b58a43648a8c3c5e35fa9701d95293918be80dd177b74dbb61f72b432" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.0.tar.gz", "has_sig": false, "md5_digest": "fd0a4fe1a23bd27873a6a72759ede759", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13914, "upload_time": "2017-07-03T04:21:43", "upload_time_iso_8601": "2017-07-03T04:21:43.563048Z", "url": "https://files.pythonhosted.org/packages/69/1e/5c486fc18113b051d8260979fa78770c94b6b19ff47cf33842f7c2b3c0c9/pre_commit_hooks-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "5d95c96af5a5ca17594d255dc2079a56", "sha256": "fa5aeaad2a9d0c729095963d10b1d142d0cd55e1b99592b3fc3b39f45342d5e4" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d95c96af5a5ca17594d255dc2079a56", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26948, "upload_time": "2017-07-03T05:27:29", "upload_time_iso_8601": "2017-07-03T05:27:29.712246Z", "url": "https://files.pythonhosted.org/packages/2f/3a/b9643e968d4df9965239c2de44a94a9daf97a3a65a38cd0ef8413d321aa2/pre_commit_hooks-0.9.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd27f1fb1f521f03a2e766f3cdd871ec", "sha256": "d9fd8a6cc5fdb9c5f16dba0b8ce161828a86796def365e458f15da904dc5a082" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.1.tar.gz", "has_sig": false, "md5_digest": "dd27f1fb1f521f03a2e766f3cdd871ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14150, "upload_time": "2017-07-03T05:27:31", "upload_time_iso_8601": "2017-07-03T05:27:31.615703Z", "url": "https://files.pythonhosted.org/packages/03/0d/78fd5a2dbabdfe101ca88894a36f52eb08007373e07652210ff59d6625d8/pre_commit_hooks-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "020d810e51a585548b236fc069fc989e", "sha256": "3e611c6c76bbf6bad24a12058137164e9ce39b57eec418cd4bd3aeb799aa274c" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "020d810e51a585548b236fc069fc989e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26877, "upload_time": "2017-08-21T17:58:46", "upload_time_iso_8601": "2017-08-21T17:58:46.591823Z", "url": "https://files.pythonhosted.org/packages/3d/86/f6d708b18ec392230d78f4406fcb230b1df5ed66c4e476d80bc2318cbb17/pre_commit_hooks-0.9.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffae16cb122d69083fa09266f184ff69", "sha256": "a444ed82942ff0e30a86d0030918a55a319b5fa8da122cc8bed44dbe63928854" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.2.tar.gz", "has_sig": false, "md5_digest": "ffae16cb122d69083fa09266f184ff69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13905, "upload_time": "2017-08-21T17:58:48", "upload_time_iso_8601": "2017-08-21T17:58:48.789703Z", "url": "https://files.pythonhosted.org/packages/16/ec/fc1a6d1fa51e7d779ac88eac8867f222935771059f43ed224455e85f34ec/pre_commit_hooks-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "0b0f0a019ff162f1b2060a28c049c138", "sha256": "07574bf588564c84244c3006fed2a2cff88c8ad1901fa400628d921e172a8f2d" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b0f0a019ff162f1b2060a28c049c138", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28040, "upload_time": "2017-09-08T02:54:55", "upload_time_iso_8601": "2017-09-08T02:54:55.414368Z", "url": "https://files.pythonhosted.org/packages/ee/9d/1fca42906b5b3a11e70f6be08c11b4620461b3aa3f3e54703a68cb3a06ea/pre_commit_hooks-0.9.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4aaf130273fc4da6ded83a93491093b5", "sha256": "544569ab76c94acb909de9a514ef7f449b06df1d01b37baa4135ff15b0d0e423" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.3.tar.gz", "has_sig": false, "md5_digest": "4aaf130273fc4da6ded83a93491093b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16734, "upload_time": "2017-09-08T02:54:57", "upload_time_iso_8601": "2017-09-08T02:54:57.859625Z", "url": "https://files.pythonhosted.org/packages/83/71/67a5972f6cdc5fe28a2c2c7d602be1946b7468bb3c74b6c5e26373c11769/pre_commit_hooks-0.9.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "2ccd16fd0d62feb2075e65591e2b5748", "sha256": "79d973dc2e2081a1eb8e5f9335b4c8eaeb4eccf1ca31bf0cfb31dd02af8cbddc" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ccd16fd0d62feb2075e65591e2b5748", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28034, "upload_time": "2017-09-19T17:26:41", "upload_time_iso_8601": "2017-09-19T17:26:41.542811Z", "url": "https://files.pythonhosted.org/packages/9f/c6/15ce09b1454cef103dd753d057366d6dd1f337f8e8666c82918662ed5448/pre_commit_hooks-0.9.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba9e5f9c2026b88dea3854f9e43cd6f5", "sha256": "4e846e41f83070c07ea29870e5c5f3affac3359ddba0e92a3a811c3215f4164e" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.4.tar.gz", "has_sig": false, "md5_digest": "ba9e5f9c2026b88dea3854f9e43cd6f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16751, "upload_time": "2017-09-19T17:26:43", "upload_time_iso_8601": "2017-09-19T17:26:43.957310Z", "url": "https://files.pythonhosted.org/packages/b7/f8/eac22e6db1a45db9caa41e8d14f2ecc2842704a767cb9594eb4a0a40b762/pre_commit_hooks-0.9.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "1b141200ebd3a52d3a50fad0a68d12d1", "sha256": "c5b12acc6d08f46e48eed9bcd172b63671546b834e37a53da50b0658db0c42f3" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b141200ebd3a52d3a50fad0a68d12d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28111, "upload_time": "2017-09-27T14:55:53", "upload_time_iso_8601": "2017-09-27T14:55:53.937276Z", "url": "https://files.pythonhosted.org/packages/6e/09/414fc7953cd5e553ccbf37eea29fbe52d19272ab2808c71e07b2e44d2cfb/pre_commit_hooks-0.9.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98e663b89b19df70c3e8ed584ae7138f", "sha256": "7854e50916ee0ef6c43eedb11767d4fd1bdebd6d5be2219696125263129788be" }, "downloads": -1, "filename": "pre_commit_hooks-0.9.5.tar.gz", "has_sig": false, "md5_digest": "98e663b89b19df70c3e8ed584ae7138f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16778, "upload_time": "2017-09-27T14:55:59", "upload_time_iso_8601": "2017-09-27T14:55:59.179360Z", "url": "https://files.pythonhosted.org/packages/c8/66/4fb176baa76200daf275b9f0564616adee8a612a40b5b3694c83dd9c35de/pre_commit_hooks-0.9.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "a29ddf72e2589d07ffe8698073723843", "sha256": "9ae70e740c67a3bd5ff275bb08096d880e653bea62a881f120140883a7266fef" }, "downloads": -1, "filename": "pre_commit_hooks-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a29ddf72e2589d07ffe8698073723843", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28777, "upload_time": "2017-10-09T20:17:45", "upload_time_iso_8601": "2017-10-09T20:17:45.211135Z", "url": "https://files.pythonhosted.org/packages/cc/9c/f1d882782c4ed4f3ea559f6715ffa6f447f132ef7e4772f63256e4955ae6/pre_commit_hooks-1.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7943a0cfbe483f2cee1c172b7cc9ac47", "sha256": "7091fde690948926849dbff0c5b94585c2197d5f38ac17bdbb28ffa2c2bd19d1" }, "downloads": -1, "filename": "pre_commit_hooks-1.0.0.tar.gz", "has_sig": false, "md5_digest": "7943a0cfbe483f2cee1c172b7cc9ac47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16851, "upload_time": "2017-10-09T20:17:46", "upload_time_iso_8601": "2017-10-09T20:17:46.935502Z", "url": "https://files.pythonhosted.org/packages/42/10/99d07f159e597be4311052d28d3cd7ef2e38623e417777d01d3135d1d12f/pre_commit_hooks-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "3adc3aaa660c6370c64000e1061e3538", "sha256": "c2467ac5506e74e4ea41f94054b5c3be42024c057f99587dcde8207cd580d626" }, "downloads": -1, "filename": "pre_commit_hooks-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3adc3aaa660c6370c64000e1061e3538", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28899, "upload_time": "2017-10-12T23:00:38", "upload_time_iso_8601": "2017-10-12T23:00:38.286536Z", "url": "https://files.pythonhosted.org/packages/22/70/9fc55cc55bb4724371a6edb2380e45b1da3ed0d0d405f3e1be7002a28a3e/pre_commit_hooks-1.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5690cf1b56aa15e440e1ddfcb644f747", "sha256": "69c12a599749732461a3340b6a5d9a3d40595a259ae2954176a8c8cd1496ec33" }, "downloads": -1, "filename": "pre_commit_hooks-1.1.0.tar.gz", "has_sig": false, "md5_digest": "5690cf1b56aa15e440e1ddfcb644f747", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17018, "upload_time": "2017-10-12T23:00:40", "upload_time_iso_8601": "2017-10-12T23:00:40.032997Z", "url": "https://files.pythonhosted.org/packages/2e/b2/29d5637918aeaa5582c33a2e5e7cf93738d5510a2ba7b0020357e3aaf0eb/pre_commit_hooks-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "fc60f53e061756bf9571af24155abc1e", "sha256": "1989c42f71ef24dccaea78394a8a0a872f4660c8bc8a6f28439328a52627e7db" }, "downloads": -1, "filename": "pre_commit_hooks-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc60f53e061756bf9571af24155abc1e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28907, "upload_time": "2017-10-19T17:34:41", "upload_time_iso_8601": "2017-10-19T17:34:41.933744Z", "url": "https://files.pythonhosted.org/packages/b9/55/fe1550db2c23495d03f58c6ce41f3d4b7c6520a570dcb3747467c2c98bd2/pre_commit_hooks-1.1.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b6a3059fa9c106e28a016983cd797ff", "sha256": "c863f24368ac107d2de60d7c7171e9d3005d2614ad9c3739da4dd94429922a9d" }, "downloads": -1, "filename": "pre_commit_hooks-1.1.1.tar.gz", "has_sig": false, "md5_digest": "5b6a3059fa9c106e28a016983cd797ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14919, "upload_time": "2017-10-19T17:34:43", "upload_time_iso_8601": "2017-10-19T17:34:43.373165Z", "url": "https://files.pythonhosted.org/packages/2d/5f/645f61c4b24d57bb44b813cdce8b5b75a23a50137b4fdc09cdad4b105a37/pre_commit_hooks-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "38ac61a60eb9d3f3d1292801f1bf23fb", "sha256": "4482bb01e47f6acb12e0c643eda727d9c593ce904f2f94064373c06390f8ee7c" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38ac61a60eb9d3f3d1292801f1bf23fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30289, "upload_time": "2018-01-14T01:36:31", "upload_time_iso_8601": "2018-01-14T01:36:31.357169Z", "url": "https://files.pythonhosted.org/packages/a7/52/c4d96b58b54ca0f284e4d4f5bbed3d7aa959ae3485dfb6f3698fa6182537/pre_commit_hooks-1.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53823f4fe4e79db4e7c8d233e8c29590", "sha256": "9ecc4d79517caee58a240eba8b5448f547cbe2415d92305162265460cf9d1e86" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.0.tar.gz", "has_sig": false, "md5_digest": "53823f4fe4e79db4e7c8d233e8c29590", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18193, "upload_time": "2018-01-14T01:36:32", "upload_time_iso_8601": "2018-01-14T01:36:32.673934Z", "url": "https://files.pythonhosted.org/packages/bb/3e/320f3eeff16ecf5a992e64b87cbf59bc7ded9bd5a5e74a4f254cf6cb4707/pre_commit_hooks-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "06a5ef4cb7c30411c28d991a73ca5f6f", "sha256": "ea2df8db9d9db81704bd7509b294ab7c31d118ad6371441e25240f1b5985b8c8" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06a5ef4cb7c30411c28d991a73ca5f6f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30299, "upload_time": "2018-02-19T21:27:32", "upload_time_iso_8601": "2018-02-19T21:27:32.469516Z", "url": "https://files.pythonhosted.org/packages/d7/4a/f6546f15d6ff97bd67520a5d6c714aec2af8c4289c0d62f73127e3bfc1db/pre_commit_hooks-1.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "390618dac654dde8bb04186f7336f1c2", "sha256": "4976702967948c42481808cc07717e80446826ad1855b8147679c9094a003fee" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.1.tar.gz", "has_sig": false, "md5_digest": "390618dac654dde8bb04186f7336f1c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18226, "upload_time": "2018-02-19T21:27:34", "upload_time_iso_8601": "2018-02-19T21:27:34.481972Z", "url": "https://files.pythonhosted.org/packages/e4/04/d4ba8f295047e2dbfddf1741d8bdde4efaa24650638535a1ff33c1cfb373/pre_commit_hooks-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "d7e0cfd3334fd9789e1724a794f2f8c8", "sha256": "b5ebff6d78e09144603e3f54421a06ebf936bead9621d3eb666d56db400c0911" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d7e0cfd3334fd9789e1724a794f2f8c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30302, "upload_time": "2018-02-28T17:03:06", "upload_time_iso_8601": "2018-02-28T17:03:06.388779Z", "url": "https://files.pythonhosted.org/packages/c9/04/f7a7c9a826bb29402ef9195f03ca18d288390996a3b423c512b538b0a106/pre_commit_hooks-1.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f66db570266981beb4417ce2a00456dd", "sha256": "dd5b3d716200766c776d7b797155cad147db753107c6bb423c8a91b26a22ddf0" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.2.tar.gz", "has_sig": false, "md5_digest": "f66db570266981beb4417ce2a00456dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17768, "upload_time": "2018-02-28T17:03:07", "upload_time_iso_8601": "2018-02-28T17:03:07.829438Z", "url": "https://files.pythonhosted.org/packages/ab/07/1f4df34680bd0c8de8ec35b6f51add5d5f0ef3f360e721bf247435cdad87/pre_commit_hooks-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "b5706ff9ed74b3043ddb7936ce07d6e5", "sha256": "7c7c8192f973239af11e6e40092fb00e08a1675318363fb6fd6721c831357294" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b5706ff9ed74b3043ddb7936ce07d6e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30300, "upload_time": "2018-02-28T17:15:01", "upload_time_iso_8601": "2018-02-28T17:15:01.612788Z", "url": "https://files.pythonhosted.org/packages/bb/98/cc0675381c7206cc8bb9f28b4c3da36c5d046670eb92345a69e2628c3a3f/pre_commit_hooks-1.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "847bd6a39ea3237e5bd7e62564210eb8", "sha256": "a51ae9263cadf8fd8d9da79da8b28a6cdd8e27778708dbe3b6cd9ae8a7ada84a" }, "downloads": -1, "filename": "pre_commit_hooks-1.2.3.tar.gz", "has_sig": false, "md5_digest": "847bd6a39ea3237e5bd7e62564210eb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17760, "upload_time": "2018-02-28T17:15:04", "upload_time_iso_8601": "2018-02-28T17:15:04.733220Z", "url": "https://files.pythonhosted.org/packages/4c/27/e52a8d2a6bdc1bdd4d0957ed6411098288b42e90a406f242661d1c09e4f8/pre_commit_hooks-1.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "5136680fe0201fee1061d50b7a4d4239", "sha256": "b20eb5621ff2bea204ea2ff7d86e8fb5a1058a58c8d316549dd61c32d5497426" }, "downloads": -1, "filename": "pre_commit_hooks-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5136680fe0201fee1061d50b7a4d4239", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30814, "upload_time": "2018-05-28T17:35:14", "upload_time_iso_8601": "2018-05-28T17:35:14.458451Z", "url": "https://files.pythonhosted.org/packages/b8/50/fa77cc228fcddffa57a65a55eca137359d3e4b98760d60ee6fa72ef84085/pre_commit_hooks-1.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97c58f55f7563890f0d961e53f5740a8", "sha256": "e362d5e66e6c9eed702592feb850602fc67c858ef275584b8499a878d3d59765" }, "downloads": -1, "filename": "pre_commit_hooks-1.3.0.tar.gz", "has_sig": false, "md5_digest": "97c58f55f7563890f0d961e53f5740a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18699, "upload_time": "2018-05-28T17:35:15", "upload_time_iso_8601": "2018-05-28T17:35:15.770301Z", "url": "https://files.pythonhosted.org/packages/bf/aa/0017e80556ade6e8dda0e036ad7abe8a7b805db26f056dd528620a6add9c/pre_commit_hooks-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "1551e807fe02f0f26cd4786ce38b665c", "sha256": "e688ad533a6aca87a93f7b4b888a4ba4833d7fdfb244f6148dcbadbf8edef5d8" }, "downloads": -1, "filename": "pre_commit_hooks-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1551e807fe02f0f26cd4786ce38b665c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29440, "upload_time": "2018-07-22T16:34:34", "upload_time_iso_8601": "2018-07-22T16:34:34.628171Z", "url": "https://files.pythonhosted.org/packages/01/62/05ffeefc9ff6f0e3ca7a6c9248db0e5f65acffe760f868c88f67a5e6b5a3/pre_commit_hooks-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6406d35a3454018f1bfaaee9c7607e86", "sha256": "b557e66d94a687d6cc1b05d71438739c6948c2be9fb953ae093d3e31762cc4d7" }, "downloads": -1, "filename": "pre_commit_hooks-1.4.0.tar.gz", "has_sig": false, "md5_digest": "6406d35a3454018f1bfaaee9c7607e86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18486, "upload_time": "2018-07-22T16:34:36", "upload_time_iso_8601": "2018-07-22T16:34:36.050349Z", "url": "https://files.pythonhosted.org/packages/e6/e2/0f0ac24857308e2ef956f66f98e1cae7837624f220ce3e12e94b1ad70544/pre_commit_hooks-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "7a994345560a922b7d523739eb053168", "sha256": "1065eaf211ede746ff491d2040be3b973da226c04b23628c8e9c70bf5eb603b3" }, "downloads": -1, "filename": "pre_commit_hooks-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a994345560a922b7d523739eb053168", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30121, "upload_time": "2018-10-13T02:56:53", "upload_time_iso_8601": "2018-10-13T02:56:53.450637Z", "url": "https://files.pythonhosted.org/packages/a9/df/f9ceb0f4d9333039d87ac74a4c0fc44c11a729e516eb21822e9da113fffb/pre_commit_hooks-2.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d48a21c7ef83cfefc0b1b0d4b1be04a", "sha256": "380915dc21eeb47b9cdc107fb376c04529345fbf62fb146fe5a0553dad5d9262" }, "downloads": -1, "filename": "pre_commit_hooks-2.0.0.tar.gz", "has_sig": false, "md5_digest": "6d48a21c7ef83cfefc0b1b0d4b1be04a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18654, "upload_time": "2018-10-13T02:56:55", "upload_time_iso_8601": "2018-10-13T02:56:55.034481Z", "url": "https://files.pythonhosted.org/packages/64/7d/d4ee797c15c0a6b3b4ef49371e7f24bd6ff70231efde2dd2aba303827641/pre_commit_hooks-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "61f909ae6702d5800b601e386cfd3afe", "sha256": "a629a9959016d084ea11bb32101e9f921512fb8a3f38a2593d8b88bc8e616d00" }, "downloads": -1, "filename": "pre_commit_hooks-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61f909ae6702d5800b601e386cfd3afe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30215, "upload_time": "2018-12-26T17:48:20", "upload_time_iso_8601": "2018-12-26T17:48:20.538360Z", "url": "https://files.pythonhosted.org/packages/9d/4e/278ea84f12e6ae87e9f9a7a0e29cdd97cc7d991114f906578941211a7701/pre_commit_hooks-2.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43fbae9396ac8349cd1cd57fbfa44fc5", "sha256": "3dc8302be221dea56e898e57aca001da7a9274fe6a1a5d54f423171993fdad23" }, "downloads": -1, "filename": "pre_commit_hooks-2.1.0.tar.gz", "has_sig": false, "md5_digest": "43fbae9396ac8349cd1cd57fbfa44fc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18576, "upload_time": "2018-12-26T17:48:22", "upload_time_iso_8601": "2018-12-26T17:48:22.170642Z", "url": "https://files.pythonhosted.org/packages/bd/97/25f5a42c396dd9138553db0dcf0748f58529df4da3301f8eb090ea838006/pre_commit_hooks-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "04776f35d6377b3e0449d9d248682992", "sha256": "2a5104c4b5995612eeb2d54bc8cf4ae1b90c28d5bc61ea82f6ec7d002f0719b5" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "04776f35d6377b3e0449d9d248682992", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35216, "upload_time": "2019-04-21T20:13:16", "upload_time_iso_8601": "2019-04-21T20:13:16.143785Z", "url": "https://files.pythonhosted.org/packages/61/ae/1466b1e5b253fc6e15b945b258b1f92377992aeb3c1b661fb1225d709949/pre_commit_hooks-2.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda1442e74a08358b3d9aa908309099c", "sha256": "f0d3167be18b6aca25f489270685a4af118628649262d8ebd47ac798f276387a" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.0.tar.gz", "has_sig": false, "md5_digest": "eda1442e74a08358b3d9aa908309099c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20514, "upload_time": "2019-04-21T20:13:17", "upload_time_iso_8601": "2019-04-21T20:13:17.772147Z", "url": "https://files.pythonhosted.org/packages/1d/83/559c0fb8348425d67039c3ef491528e657c29bf27f79ef776dcc93a9ad90/pre_commit_hooks-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "47ddb6c9f30f3eb3c29d97c06aa63188", "sha256": "bf596837a2185819c3024cc9bdc367162624c2256930ccb52bc6ad7554f17af2" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47ddb6c9f30f3eb3c29d97c06aa63188", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35234, "upload_time": "2019-04-21T20:17:23", "upload_time_iso_8601": "2019-04-21T20:17:23.937547Z", "url": "https://files.pythonhosted.org/packages/d6/4a/b29bcf591cd01632a256dff8b09148ce57a1b701febf1a337dcad1ed8bd1/pre_commit_hooks-2.2.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe365a695d72ea15fd091f9863d8b432", "sha256": "fa51a4e64180b44b7bffbc9d7961192f48f532c78d95573da0151299c8760c6d" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.1.tar.gz", "has_sig": false, "md5_digest": "fe365a695d72ea15fd091f9863d8b432", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20514, "upload_time": "2019-04-21T20:17:25", "upload_time_iso_8601": "2019-04-21T20:17:25.144627Z", "url": "https://files.pythonhosted.org/packages/33/44/2b772906e795a8c81977868ec3f84c7cdfb0aa273e595965a0ff411d5433/pre_commit_hooks-2.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "cc9d3f9e5ebd8b58e65d8a30d9235967", "sha256": "3911e70a4d02a37799329aab6ee516559937dbac82b73865108d7ecb3e05052a" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc9d3f9e5ebd8b58e65d8a30d9235967", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35251, "upload_time": "2019-05-15T17:17:51", "upload_time_iso_8601": "2019-05-15T17:17:51.952818Z", "url": "https://files.pythonhosted.org/packages/df/b1/69e372a341b4d1c36013109b25fb7eeadce526b5de85e8cdd98fd1fc2844/pre_commit_hooks-2.2.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecd54dfded7547b149720b3913ecfe6b", "sha256": "3e8e54b0c330c40d8c0e2c2516e1f887a35a27d04aefd32a9aeb8a60dbd143a0" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.2.tar.gz", "has_sig": false, "md5_digest": "ecd54dfded7547b149720b3913ecfe6b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20547, "upload_time": "2019-05-15T17:17:53", "upload_time_iso_8601": "2019-05-15T17:17:53.573764Z", "url": "https://files.pythonhosted.org/packages/0c/36/6f29c1f65cf295d8328c883db0c8d689932e57db8c0befa3d62952043ad8/pre_commit_hooks-2.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "918bcf9182c3fa815703f1d3434ebc7a", "sha256": "692c202c21b1c168749053dd44f23d40e02886c6b8e32c0469705c8ecdfb595a" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "918bcf9182c3fa815703f1d3434ebc7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35254, "upload_time": "2019-05-16T16:58:39", "upload_time_iso_8601": "2019-05-16T16:58:39.278082Z", "url": "https://files.pythonhosted.org/packages/fb/70/40757ab5d15598400def561d5848e9bacfab703671550d76844442ba8f12/pre_commit_hooks-2.2.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc9c086a45d626642c8ee5119e922a39", "sha256": "29349ad3894229bded388de2f9a2b4f1c95aa003f12a546d00e06ac62f5ecc5f" }, "downloads": -1, "filename": "pre_commit_hooks-2.2.3.tar.gz", "has_sig": false, "md5_digest": "fc9c086a45d626642c8ee5119e922a39", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20562, "upload_time": "2019-05-16T16:58:41", "upload_time_iso_8601": "2019-05-16T16:58:41.111895Z", "url": "https://files.pythonhosted.org/packages/f5/ea/cf719d21d7c016e1215bc201c302b7ab5b534f778ea9ae8229b75eae5d8a/pre_commit_hooks-2.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "080a8bf2f24b35d088dff23053b0b08d", "sha256": "ee45aafe7f71a3b2c809d6ec9fd286a6d2b12285c2f63bf792e1229df43dc653" }, "downloads": -1, "filename": "pre_commit_hooks-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "080a8bf2f24b35d088dff23053b0b08d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35843, "upload_time": "2019-08-05T17:33:52", "upload_time_iso_8601": "2019-08-05T17:33:52.155998Z", "url": "https://files.pythonhosted.org/packages/91/2d/c9c01a6481cc6c7050998a5243cbdf0c16a49173b450984f705d2280f4dd/pre_commit_hooks-2.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd536678f4adb3a4844e6372f304cd76", "sha256": "927cfc8485c3dcf4a6cfb827b1c371db7f2f2dc708e0ed0711e807c4c94e9a21" }, "downloads": -1, "filename": "pre_commit_hooks-2.3.0.tar.gz", "has_sig": false, "md5_digest": "bd536678f4adb3a4844e6372f304cd76", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 20648, "upload_time": "2019-08-05T17:33:53", "upload_time_iso_8601": "2019-08-05T17:33:53.784629Z", "url": "https://files.pythonhosted.org/packages/fc/b4/1b5d6986d8f0855cd11774619980b6ed310549f49e20e147717c54ca357d/pre_commit_hooks-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "1adfc11dc2ae4dec92ee1d10ec52ffb5", "sha256": "94edbc072bf6c975961c99a32ab60e7a46be0b3c143f70208b2184694ffc590c" }, "downloads": -1, "filename": "pre_commit_hooks-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1adfc11dc2ae4dec92ee1d10ec52ffb5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 36324, "upload_time": "2019-10-28T22:20:13", "upload_time_iso_8601": "2019-10-28T22:20:13.604031Z", "url": "https://files.pythonhosted.org/packages/f8/6f/6a5851e81bfe09199a86f49ed6e23898cb0d3533e434bc3e27cdb8c884f3/pre_commit_hooks-2.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3abcd337c42add210fa16b571131cc30", "sha256": "15bf8c088e406d987dec4c3bfbfb7d31d3bdbcb6ede71cf048cfc855f86afa77" }, "downloads": -1, "filename": "pre_commit_hooks-2.4.0.tar.gz", "has_sig": false, "md5_digest": "3abcd337c42add210fa16b571131cc30", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 21117, "upload_time": "2019-10-28T22:20:15", "upload_time_iso_8601": "2019-10-28T22:20:15.529222Z", "url": "https://files.pythonhosted.org/packages/af/59/ab4c80c0850af37217e2e642437bb177b195df4debcf2017e98bd1556be1/pre_commit_hooks-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "bebdbb8ca717060fa98a85e3ba83376e", "sha256": "052adeef36b13c87f5c49922f15ca047993f09d4fe8fdfb091436f3e4a56892b" }, "downloads": -1, "filename": "pre_commit_hooks-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bebdbb8ca717060fa98a85e3ba83376e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7", "size": 36472, "upload_time": "2020-02-05T00:10:48", "upload_time_iso_8601": "2020-02-05T00:10:48.437649Z", "url": "https://files.pythonhosted.org/packages/f4/96/380e8c2ad6b460964cf9e2ee5bfaeda5248c0a783b70f48d143d30058137/pre_commit_hooks-2.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97db27cbbd8baedc262c43155e40bb65", "sha256": "a03e2e78b7cdd07268935d83958dde66ad1e09eb23b8a3b115beb4f82fb541d6" }, "downloads": -1, "filename": "pre_commit_hooks-2.5.0.tar.gz", "has_sig": false, "md5_digest": "97db27cbbd8baedc262c43155e40bb65", "packagetype": "sdist", "python_version": "source", "requires_python": "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7", "size": 21384, "upload_time": "2020-02-05T00:10:50", "upload_time_iso_8601": "2020-02-05T00:10:50.310174Z", "url": "https://files.pythonhosted.org/packages/a8/09/c7b1850ee026855c7a72d7ac10c6f2f3facff894f3cafcb47627561556aa/pre_commit_hooks-2.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "fe40f7f390d2fe0b0df405cf74f0eacf", "sha256": "016db80ce8e65f9e39c84a3e0c1a3400a5466dcee3c3e98f1009d9d13720569a" }, "downloads": -1, "filename": "pre_commit_hooks-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe40f7f390d2fe0b0df405cf74f0eacf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 34781, "upload_time": "2020-05-14T23:25:01", "upload_time_iso_8601": "2020-05-14T23:25:01.153365Z", "url": "https://files.pythonhosted.org/packages/69/5f/ae981069a0a2caa535a87232ddbab4a5df2d5ab40186f428725f565781cf/pre_commit_hooks-3.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0976da5dced4dd2d3b60bd7f6f2facb4", "sha256": "b63e0acdccd91d9c7e9a207a6e999f87b8bf3ddd2241cf0f2077207a5ffc5756" }, "downloads": -1, "filename": "pre_commit_hooks-3.0.0.tar.gz", "has_sig": false, "md5_digest": "0976da5dced4dd2d3b60bd7f6f2facb4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 25193, "upload_time": "2020-05-14T23:25:02", "upload_time_iso_8601": "2020-05-14T23:25:02.495348Z", "url": "https://files.pythonhosted.org/packages/69/c9/fe4eabfc2ee4c3740f0bb847880ad0175a2f45298997285f49656ce45b74/pre_commit_hooks-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "41292e4a8abfdb056550d952d7613b7a", "sha256": "36343c0aebeaa72c54ed46cc7803b68a132acb7f4de786e3c47d15264c96fb36" }, "downloads": -1, "filename": "pre_commit_hooks-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "41292e4a8abfdb056550d952d7613b7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 34735, "upload_time": "2020-05-17T01:09:08", "upload_time_iso_8601": "2020-05-17T01:09:08.660488Z", "url": "https://files.pythonhosted.org/packages/2f/09/a352c3f338c0907d9db542ec11254570ad5b5dcf6e8e8c651e3842347394/pre_commit_hooks-3.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67c75991827ce4e0f2739a06a648d8b6", "sha256": "8a16f828f42ed5e39005b84773530855ce6e4d3a4ccc9348b48c00a55e7dab75" }, "downloads": -1, "filename": "pre_commit_hooks-3.0.1.tar.gz", "has_sig": false, "md5_digest": "67c75991827ce4e0f2739a06a648d8b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 25173, "upload_time": "2020-05-17T01:09:09", "upload_time_iso_8601": "2020-05-17T01:09:09.943977Z", "url": "https://files.pythonhosted.org/packages/96/fb/19627e71965f16f2edaadac025c4d432b68535e97ee21de7858c34274185/pre_commit_hooks-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "cc9add5897b5aa2a1e05588e7e4d9b60", "sha256": "32e07d6bd511e26ac3d7b7aafdd2e49d0f1efdb7fc772156386004b9e6f66dbe" }, "downloads": -1, "filename": "pre_commit_hooks-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc9add5897b5aa2a1e05588e7e4d9b60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 35142, "upload_time": "2020-05-20T16:11:32", "upload_time_iso_8601": "2020-05-20T16:11:32.249735Z", "url": "https://files.pythonhosted.org/packages/79/60/31f55c364dc228ac0beb7f992412d1a7be3a7393b7fe501b73ba8c37aa2d/pre_commit_hooks-3.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a499c0e17d460c45158fc39268ca455", "sha256": "78642bdda65d524a6c91faaf4b322f18fc561e4377e8651d8502c6073e4a19d9" }, "downloads": -1, "filename": "pre_commit_hooks-3.1.0.tar.gz", "has_sig": false, "md5_digest": "6a499c0e17d460c45158fc39268ca455", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 25588, "upload_time": "2020-05-20T16:11:33", "upload_time_iso_8601": "2020-05-20T16:11:33.471474Z", "url": "https://files.pythonhosted.org/packages/72/38/ac8608b3cb3734cf7c7b5681cc3b04114a0ec3860781a28f0ac8a76fb087/pre_commit_hooks-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "d7ab6ff30b8d03132bd72ab36a225a2a", "sha256": "8a174237326576c5f2279eba18ccbf2ca2a19fcaab8844db80f576c8fe76c2c2" }, "downloads": -1, "filename": "pre_commit_hooks-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d7ab6ff30b8d03132bd72ab36a225a2a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 35384, "upload_time": "2020-07-30T20:33:50", "upload_time_iso_8601": "2020-07-30T20:33:50.429844Z", "url": "https://files.pythonhosted.org/packages/a5/50/3b224acaec11ed185f5471899e877ca522cf66237332b967839805bb6d67/pre_commit_hooks-3.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7868776d4e5a70256fa2d1f5ecb8a4fe", "sha256": "917bce8feb048f8271e3a4a900c6d780118d23e8ddf4557ddec9384c0d1dba79" }, "downloads": -1, "filename": "pre_commit_hooks-3.2.0.tar.gz", "has_sig": false, "md5_digest": "7868776d4e5a70256fa2d1f5ecb8a4fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 25993, "upload_time": "2020-07-30T20:33:51", "upload_time_iso_8601": "2020-07-30T20:33:51.554665Z", "url": "https://files.pythonhosted.org/packages/11/df/6a5488f3f5cf867894fc7abb4e1a84c97d7fb66f261cedd6bb86196de559/pre_commit_hooks-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "9d795bcfdb5dbf735cb9c7738b52b31b", "sha256": "2190d72ac867bd9b8880de32d9304ec54182c89720cce56f22742890ed8ba90f" }, "downloads": -1, "filename": "pre_commit_hooks-3.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d795bcfdb5dbf735cb9c7738b52b31b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 36282, "upload_time": "2020-10-20T17:17:19", "upload_time_iso_8601": "2020-10-20T17:17:19.202740Z", "url": "https://files.pythonhosted.org/packages/31/5b/8a133028e373d77252a96038c8da6e3b4a4422ccca553c950df84d965635/pre_commit_hooks-3.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a491f325b7617ce7b4587b8b5b55bec0", "sha256": "1e18c0451279fb88653c7b9f8fd73ccc35925e95b636c5b64095538f68a23b06" }, "downloads": -1, "filename": "pre_commit_hooks-3.3.0.tar.gz", "has_sig": false, "md5_digest": "a491f325b7617ce7b4587b8b5b55bec0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 26568, "upload_time": "2020-10-20T17:17:21", "upload_time_iso_8601": "2020-10-20T17:17:21.099289Z", "url": "https://files.pythonhosted.org/packages/02/47/ab4a9d5c606cd836d040b2183228c6c51b222c1fb4569533dd0bd9797230/pre_commit_hooks-3.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "26b8138d8430917698240fbf4f7ad572", "sha256": "b1d329fc712f53f56af7c4a0ac08c414a7fcfd634dbd829c3a03f39cfb9c3574" }, "downloads": -1, "filename": "pre_commit_hooks-3.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "26b8138d8430917698240fbf4f7ad572", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 38243, "upload_time": "2020-12-15T21:46:57", "upload_time_iso_8601": "2020-12-15T21:46:57.962102Z", "url": "https://files.pythonhosted.org/packages/94/da/8671ab326e8dda24ce5df44f1dcb8c7a4a0eb03b3bf2c49e53ce694a12f9/pre_commit_hooks-3.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f631d25790279327a6a8cba884bb93f6", "sha256": "57e377b931aceead550e4a7bdbe8065e79e371e80f593b5b6d1129e63a77154f" }, "downloads": -1, "filename": "pre_commit_hooks-3.4.0.tar.gz", "has_sig": false, "md5_digest": "f631d25790279327a6a8cba884bb93f6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 28207, "upload_time": "2020-12-15T21:46:59", "upload_time_iso_8601": "2020-12-15T21:46:59.525922Z", "url": "https://files.pythonhosted.org/packages/9d/be/f561c544b1f20507ae20d32e3e6bb96ed15fe0c936cd5853de2a0b251b7a/pre_commit_hooks-3.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "e11c8b7f459bd72eef27c756a7dec1fe", "sha256": "8925bcb2e74c7c04f40a50f5ab5c4bc25371e95a030bcac5cc0d62ee6467ec11" }, "downloads": -1, "filename": "pre_commit_hooks-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e11c8b7f459bd72eef27c756a7dec1fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 39580, "upload_time": "2021-05-15T03:18:40", "upload_time_iso_8601": "2021-05-15T03:18:40.173834Z", "url": "https://files.pythonhosted.org/packages/76/7f/b87e8a9df24760286b8628e2efbd087735b239e426227e22a5ac3441cd45/pre_commit_hooks-4.0.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da75fdf0704ccc9b4bbe6324153c1015", "sha256": "1502c1d3a7b6a66e4bf21e395498e5a9b37672ae8e64884441e6993284f64d2d" }, "downloads": -1, "filename": "pre_commit_hooks-4.0.0.tar.gz", "has_sig": false, "md5_digest": "da75fdf0704ccc9b4bbe6324153c1015", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 28968, "upload_time": "2021-05-15T03:18:41", "upload_time_iso_8601": "2021-05-15T03:18:41.643829Z", "url": "https://files.pythonhosted.org/packages/29/02/7cad96b205ce5833bf68b2f8a556cdb7bb4b7d6c2469cc227df8c2196cd0/pre_commit_hooks-4.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "bcf6b19d700ac4faf536e811508b5101", "sha256": "6efe92c7613c311abc7dd06817fc016f222d9289fe24b261e64412b0af96c662" }, "downloads": -1, "filename": "pre_commit_hooks-4.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcf6b19d700ac4faf536e811508b5101", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 39589, "upload_time": "2021-05-16T15:30:28", "upload_time_iso_8601": "2021-05-16T15:30:28.221889Z", "url": "https://files.pythonhosted.org/packages/de/47/c51fbe2c714f6e2278fd8bada11a25001fc0edeb93d36ceaccf6df5be435/pre_commit_hooks-4.0.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "391103ec46b503fb82a64bbef759d283", "sha256": "99f1b9fc00a82e6588990b6b92edcdf4bec9c3d65c6272b8867be389055ce05e" }, "downloads": -1, "filename": "pre_commit_hooks-4.0.1.tar.gz", "has_sig": false, "md5_digest": "391103ec46b503fb82a64bbef759d283", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 28854, "upload_time": "2021-05-16T15:30:29", "upload_time_iso_8601": "2021-05-16T15:30:29.739534Z", "url": "https://files.pythonhosted.org/packages/ef/84/b063f28575167ccce3e220259ad45a21e629d580c289cbddafc01b3f5285/pre_commit_hooks-4.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "63a4a3ea62ade57e8793f68feb02b959", "sha256": "ba95316b79038e56ce998cdacb1ce922831ac0e41744c77bcc2b9677bf183206" }, "downloads": -1, "filename": "pre_commit_hooks-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "63a4a3ea62ade57e8793f68feb02b959", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6.1", "size": 40209, "upload_time": "2021-12-24T04:47:49", "upload_time_iso_8601": "2021-12-24T04:47:49.092111Z", "url": "https://files.pythonhosted.org/packages/7b/6e/9e019feea11c0df31a7b9bcdbd8bb832f043a8d95e88a4e4af5823e611ad/pre_commit_hooks-4.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5551fc00358ea53c830095d3fc7c1836", "sha256": "b6361865d1877c5da5ac3a944aab19ce6bd749a534d2ede28e683d07194a57e1" }, "downloads": -1, "filename": "pre_commit_hooks-4.1.0.tar.gz", "has_sig": false, "md5_digest": "5551fc00358ea53c830095d3fc7c1836", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6.1", "size": 28528, "upload_time": "2021-12-24T04:47:50", "upload_time_iso_8601": "2021-12-24T04:47:50.939542Z", "url": "https://files.pythonhosted.org/packages/6b/d1/f2967770bb196ac0f2db7e7178b1b97c0b2d2371249c1d79953a09c594cd/pre_commit_hooks-4.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "006e0d80961a71ecd57f7c738d0fc7d1", "sha256": "b3a3066c5ecd5fdda9abdc932bd064bd21785ea041659676403e6fc5d964afed" }, "downloads": -1, "filename": "pre_commit_hooks-4.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "006e0d80961a71ecd57f7c738d0fc7d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7", "size": 40489, "upload_time": "2022-04-06T21:13:25", "upload_time_iso_8601": "2022-04-06T21:13:25.311955Z", "url": "https://files.pythonhosted.org/packages/3a/05/a616aff2068229006c4447ced7ea7efeb1f9e416ad0d6efe7059140245f4/pre_commit_hooks-4.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c026c4b93c7ea244fd3a055c1f22428", "sha256": "9726420c7a071e8cb233a066d36bc074b593a40f0b1b491d1b75aafa55390703" }, "downloads": -1, "filename": "pre_commit_hooks-4.2.0.tar.gz", "has_sig": false, "md5_digest": "5c026c4b93c7ea244fd3a055c1f22428", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 28563, "upload_time": "2022-04-06T21:13:26", "upload_time_iso_8601": "2022-04-06T21:13:26.737344Z", "url": "https://files.pythonhosted.org/packages/f8/3d/714d1fb5f542b4774c2730ec6bd162c7d38daad2585739a3b2438d69da18/pre_commit_hooks-4.2.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "006e0d80961a71ecd57f7c738d0fc7d1", "sha256": "b3a3066c5ecd5fdda9abdc932bd064bd21785ea041659676403e6fc5d964afed" }, "downloads": -1, "filename": "pre_commit_hooks-4.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "006e0d80961a71ecd57f7c738d0fc7d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7", "size": 40489, "upload_time": "2022-04-06T21:13:25", "upload_time_iso_8601": "2022-04-06T21:13:25.311955Z", "url": "https://files.pythonhosted.org/packages/3a/05/a616aff2068229006c4447ced7ea7efeb1f9e416ad0d6efe7059140245f4/pre_commit_hooks-4.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c026c4b93c7ea244fd3a055c1f22428", "sha256": "9726420c7a071e8cb233a066d36bc074b593a40f0b1b491d1b75aafa55390703" }, "downloads": -1, "filename": "pre_commit_hooks-4.2.0.tar.gz", "has_sig": false, "md5_digest": "5c026c4b93c7ea244fd3a055c1f22428", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 28563, "upload_time": "2022-04-06T21:13:26", "upload_time_iso_8601": "2022-04-06T21:13:26.737344Z", "url": "https://files.pythonhosted.org/packages/f8/3d/714d1fb5f542b4774c2730ec6bd162c7d38daad2585739a3b2438d69da18/pre_commit_hooks-4.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }