git-codeowners


Namegit-codeowners JSON
Version 1.1.2 PyPI version JSON
download
home_pageNone
SummaryA git subcommand to query and validate CODEOWNERS
upload_time2024-10-06 17:07:11
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords codeowners git owners
VCS
bugtrack_url
requirements maturin
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # git-codeowners

**A git subcommand to query and validate CODEOWNERS.**

List owners of files based on the [CODEOWNERS](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners) file of the current repository.

```bash
> git codeowners src/main.rs
src/main.rs                              @weyland
```

```bash
> git codeowners `git ls-files`
.gitignore                               (unowned)
Cargo.lock                               @weyland
Cargo.toml                               @weyland
LICENSE                                  (unowned)
README.md                                @weyland
src/main.rs                              @weyland
```

```bash
# Oops, did the last commit add unowned files?
> git diff --name-only --diff-filter=A | git codeowners
.gitignore                               @bob
LICENSE                                  (unowned)
```

```bash
# I need stats about my repo
> echo `git ls-files | git codeowners | grep "(unowned)"| wc -l` out of `git ls-files | git codeowners | wc -l` files in this repository do not have a corresponding CODEOWNERS entry
2 out of 6 files in this repository do not have a CODEOWNERS entry
```

## Installation

- via [pip](https://pypi.org/project/git-codeowners/): `pip install git-codeowners`
- via [Cargo](https://crates.io/crates/git-owners): `cargo install git-owners`

  Note: The Cargo crate installs an equivalent `git-owners` command in addition to `git-codeowners`, for backwards compatibility.


## Usage

- Show owner of a file

  ```bash
  git codeowners some/path
  ```

- Show owners for a list of files

  ```bash
  git codeowners some/path some/other/path
  ```

Each path should be relative to the git repository root. This makes it easy to combine with other git commands:

- Show owners for every tracked file in the repository

  ```bash
  git ls-files | git codeowners
  ```

- Show owners for files modified in last five commits

  ```bash
  git diff --name-only HEAD~5 HEAD | git codeowners
  ```

- Congratulate the user if the current changeset does not add files without owner

  ```bash
  git diff --diff-filter=ACR --name-only | git codeowners && echo "Great job! No unowned files added!"
  ```

- Get an overview of your CODEOWNERS coverage
  ```bash
  echo `git ls-files | git codeowners | grep "(unowned)"| wc -l` out of `git ls-files | git codeowners | wc -l` files in this repository do not have a CODEOWNERS entry
  ```

## Features

- Detects the right CODEOWNERS file of the current git repository (`CODEOWNERS`, `docs/CODEOWNERS`, or `.github/CODEOWNERS`)
- Works well as a pre-commit hook. Returns a non-zero exit code if unowned files are found
- Is composable & scripting friendly
- Is fast & written in Rust

## Issues & Contributing

If you have any questions or problems, feel free to communicate using Github Issues.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "git-codeowners",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "CODEOWNERS, git, owners",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/58/02/a5b5d726318e4b268c64f4b856ec701466f155dd47c571e6cd990e922d0b/git_codeowners-1.1.2.tar.gz",
    "platform": null,
    "description": "# git-codeowners\n\n**A git subcommand to query and validate CODEOWNERS.**\n\nList owners of files based on the [CODEOWNERS](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners) file of the current repository.\n\n```bash\n> git codeowners src/main.rs\nsrc/main.rs                              @weyland\n```\n\n```bash\n> git codeowners `git ls-files`\n.gitignore                               (unowned)\nCargo.lock                               @weyland\nCargo.toml                               @weyland\nLICENSE                                  (unowned)\nREADME.md                                @weyland\nsrc/main.rs                              @weyland\n```\n\n```bash\n# Oops, did the last commit add unowned files?\n> git diff --name-only --diff-filter=A | git codeowners\n.gitignore                               @bob\nLICENSE                                  (unowned)\n```\n\n```bash\n# I need stats about my repo\n> echo `git ls-files | git codeowners | grep \"(unowned)\"| wc -l` out of `git ls-files | git codeowners | wc -l` files in this repository do not have a corresponding CODEOWNERS entry\n2 out of 6 files in this repository do not have a CODEOWNERS entry\n```\n\n## Installation\n\n- via [pip](https://pypi.org/project/git-codeowners/): `pip install git-codeowners`\n- via [Cargo](https://crates.io/crates/git-owners): `cargo install git-owners`\n\n  Note: The Cargo crate installs an equivalent `git-owners` command in addition to `git-codeowners`, for backwards compatibility.\n\n\n## Usage\n\n- Show owner of a file\n\n  ```bash\n  git codeowners some/path\n  ```\n\n- Show owners for a list of files\n\n  ```bash\n  git codeowners some/path some/other/path\n  ```\n\nEach path should be relative to the git repository root. This makes it easy to combine with other git commands:\n\n- Show owners for every tracked file in the repository\n\n  ```bash\n  git ls-files | git codeowners\n  ```\n\n- Show owners for files modified in last five commits\n\n  ```bash\n  git diff --name-only HEAD~5 HEAD | git codeowners\n  ```\n\n- Congratulate the user if the current changeset does not add files without owner\n\n  ```bash\n  git diff --diff-filter=ACR --name-only | git codeowners && echo \"Great job! No unowned files added!\"\n  ```\n\n- Get an overview of your CODEOWNERS coverage\n  ```bash\n  echo `git ls-files | git codeowners | grep \"(unowned)\"| wc -l` out of `git ls-files | git codeowners | wc -l` files in this repository do not have a CODEOWNERS entry\n  ```\n\n## Features\n\n- Detects the right CODEOWNERS file of the current git repository (`CODEOWNERS`, `docs/CODEOWNERS`, or `.github/CODEOWNERS`)\n- Works well as a pre-commit hook. Returns a non-zero exit code if unowned files are found\n- Is composable & scripting friendly\n- Is fast & written in Rust\n\n## Issues & Contributing\n\nIf you have any questions or problems, feel free to communicate using Github Issues.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A git subcommand to query and validate CODEOWNERS",
    "version": "1.1.2",
    "project_urls": {
        "documentation": "https://github.com/chrisittner/git-codeowners",
        "homepage": "https://github.com/chrisittner/git-codeowners",
        "repository": "https://github.com/chrisittner/git-codeowners"
    },
    "split_keywords": [
        "codeowners",
        " git",
        " owners"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9be4e8081472f114565140c3e9b0038878087e5d0061d70aa5fcc51e618f8182",
                "md5": "154ae9f5f4c6d243c97a87d315b57dae",
                "sha256": "d6b70b26fd7f5eb0e6f0aaeb34184ea61a104db52ed61cef303aa91279d18998"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "154ae9f5f4c6d243c97a87d315b57dae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 819368,
            "upload_time": "2024-10-06T17:06:19",
            "upload_time_iso_8601": "2024-10-06T17:06:19.038075Z",
            "url": "https://files.pythonhosted.org/packages/9b/e4/e8081472f114565140c3e9b0038878087e5d0061d70aa5fcc51e618f8182/git_codeowners-1.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c09dcbde37567ab2f4631e3b6eb337b5ddbd70e31151ba2da1fa63abcf041cf",
                "md5": "be8f948b330784fc27eb5fd8e48c0a57",
                "sha256": "6df8184ad3be977515b92506197ef317fe4758db9ab891614d63fdc67eb12dca"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be8f948b330784fc27eb5fd8e48c0a57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 917796,
            "upload_time": "2024-10-06T17:05:07",
            "upload_time_iso_8601": "2024-10-06T17:05:07.483234Z",
            "url": "https://files.pythonhosted.org/packages/4c/09/dcbde37567ab2f4631e3b6eb337b5ddbd70e31151ba2da1fa63abcf041cf/git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8454bd383997c2e2c61c161def6da02deb14c7957922e240c6de7468a26c4e9f",
                "md5": "3ca88c5789370129ac7d3d6caaff7792",
                "sha256": "9d013f8168b9199ae15d8d9a8180b90ac846d6a2147a307e2072295842b536b0"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3ca88c5789370129ac7d3d6caaff7792",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 890517,
            "upload_time": "2024-10-06T17:05:19",
            "upload_time_iso_8601": "2024-10-06T17:05:19.948299Z",
            "url": "https://files.pythonhosted.org/packages/84/54/bd383997c2e2c61c161def6da02deb14c7957922e240c6de7468a26c4e9f/git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef7cc751f39f9130718caac0299bb4ecba343b9b4575fe78e29786c8b7fd4a64",
                "md5": "cc882fe80969d12e75c1687d5360dfe0",
                "sha256": "6764414e10f997a429ddc7b5921fb22d5ef3112b452f4e1c7f4709da596351bd"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cc882fe80969d12e75c1687d5360dfe0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 975284,
            "upload_time": "2024-10-06T17:05:57",
            "upload_time_iso_8601": "2024-10-06T17:05:57.835226Z",
            "url": "https://files.pythonhosted.org/packages/ef/7c/c751f39f9130718caac0299bb4ecba343b9b4575fe78e29786c8b7fd4a64/git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b730317a16f3292672bba79d25a9c2641d4f7f8c2b7b3b1ba699d3e9e80caa",
                "md5": "47797d9083415586211d6ea356cdec6f",
                "sha256": "97672c5de81ccb251cf0c75690ce6ce3a0c7dc43db3fd957d4025c986af818b1"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "47797d9083415586211d6ea356cdec6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1005741,
            "upload_time": "2024-10-06T17:05:33",
            "upload_time_iso_8601": "2024-10-06T17:05:33.989303Z",
            "url": "https://files.pythonhosted.org/packages/19/b7/30317a16f3292672bba79d25a9c2641d4f7f8c2b7b3b1ba699d3e9e80caa/git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bb5187b3dc14b91a3b4b574a9ad5d94b8b961be17a1c4e451c33e23a6e160d7",
                "md5": "424280b626a74395b635f9e68ec02735",
                "sha256": "769abe400e6961ac10d26cac91fb59909a47f78d963614daf2ed35e5fc14099a"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "424280b626a74395b635f9e68ec02735",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1058148,
            "upload_time": "2024-10-06T17:05:46",
            "upload_time_iso_8601": "2024-10-06T17:05:46.404053Z",
            "url": "https://files.pythonhosted.org/packages/0b/b5/187b3dc14b91a3b4b574a9ad5d94b8b961be17a1c4e451c33e23a6e160d7/git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ff33a7d2bcb5210765f7241c23048d82dad8baf2d804bddae2a893c6a655c45",
                "md5": "e1058f3ea9c6bb7a51b474183553c4c3",
                "sha256": "724f119a2685339911aeaf3aa6dbd687911b751282d1a8733e05f093f9a78b23"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1058f3ea9c6bb7a51b474183553c4c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 918269,
            "upload_time": "2024-10-06T17:06:10",
            "upload_time_iso_8601": "2024-10-06T17:06:10.685832Z",
            "url": "https://files.pythonhosted.org/packages/6f/f3/3a7d2bcb5210765f7241c23048d82dad8baf2d804bddae2a893c6a655c45/git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98f0d06ee9379d5c1a91fdc4715bd90cdabc3834405d2e50bb37fdef810a9f7b",
                "md5": "7fa5e34c73dc8a29b6cf283dc47f382d",
                "sha256": "4d5978d5efa65762c47289023ea1028d736a160dd432e3dbdb04108f3ef62465"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7fa5e34c73dc8a29b6cf283dc47f382d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 927073,
            "upload_time": "2024-10-06T17:06:27",
            "upload_time_iso_8601": "2024-10-06T17:06:27.572509Z",
            "url": "https://files.pythonhosted.org/packages/98/f0/d06ee9379d5c1a91fdc4715bd90cdabc3834405d2e50bb37fdef810a9f7b/git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2114e359ecf17c610243f3a51d3c8c7a9a016f5e26117e96d9dbf7d23f2ddae",
                "md5": "27c76a87c741d52a5ebc826a12cc7d37",
                "sha256": "7d348c38e77bd6c1b99185edae64cde3c3354320caff28553c9996d07939416d"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "27c76a87c741d52a5ebc826a12cc7d37",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 885277,
            "upload_time": "2024-10-06T17:06:38",
            "upload_time_iso_8601": "2024-10-06T17:06:38.934159Z",
            "url": "https://files.pythonhosted.org/packages/f2/11/4e359ecf17c610243f3a51d3c8c7a9a016f5e26117e96d9dbf7d23f2ddae/git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d327536ad1257edf9a92bfe27e24de61abae1fd5759eaa95f9aac3a7e4a1f60",
                "md5": "08183b3b60ff9a95caf7ca231785b8f1",
                "sha256": "ad40c8f431af2133481fd528bb3308b554f37c19dd644448a6912508a7ddcd12"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "08183b3b60ff9a95caf7ca231785b8f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 950026,
            "upload_time": "2024-10-06T17:06:49",
            "upload_time_iso_8601": "2024-10-06T17:06:49.142240Z",
            "url": "https://files.pythonhosted.org/packages/3d/32/7536ad1257edf9a92bfe27e24de61abae1fd5759eaa95f9aac3a7e4a1f60/git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "578000600651567c05de4ae58f1ced5330b50e3f2a2a89ee445b9b9280ed8a92",
                "md5": "d2a0db1937d8cf8a5f11c9297bcb22d7",
                "sha256": "fd6a8143c35b323cfcd49fb5337a9f28ede604e16d4d4561fae2a8eaf7b4a666"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2a0db1937d8cf8a5f11c9297bcb22d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 949177,
            "upload_time": "2024-10-06T17:07:00",
            "upload_time_iso_8601": "2024-10-06T17:07:00.409512Z",
            "url": "https://files.pythonhosted.org/packages/57/80/00600651567c05de4ae58f1ced5330b50e3f2a2a89ee445b9b9280ed8a92/git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21324ad9924450fd179bbbf88cd004b7c6b639477dceeac91014aee401e703db",
                "md5": "b5d7b0f0dc108a73849b5671f65e0bcd",
                "sha256": "5fa71c791a8b1358978d7d4f4cca3f1f1e8ba95ccce7155d83e01ac8ecf0a7d9"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b5d7b0f0dc108a73849b5671f65e0bcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1318739,
            "upload_time": "2024-10-06T17:07:19",
            "upload_time_iso_8601": "2024-10-06T17:07:19.633531Z",
            "url": "https://files.pythonhosted.org/packages/21/32/4ad9924450fd179bbbf88cd004b7c6b639477dceeac91014aee401e703db/git_codeowners-1.1.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "009ff981ee6e66b424b35fe0cf4c405ca338d752ab548ef2d08f04c8c93623f1",
                "md5": "a65a5faa479b9b3d7aba457c140549dc",
                "sha256": "398799abfbd5dd96b4acd7ba2d86b5860a7d008253389f90e526443b80ec68c5"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a65a5faa479b9b3d7aba457c140549dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1404368,
            "upload_time": "2024-10-06T17:07:12",
            "upload_time_iso_8601": "2024-10-06T17:07:12.201324Z",
            "url": "https://files.pythonhosted.org/packages/00/9f/f981ee6e66b424b35fe0cf4c405ca338d752ab548ef2d08f04c8c93623f1/git_codeowners-1.1.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "025dfbbe60f2fda9e7ddd1fc8bdb31ad24391836772ae12bbb244b7ed5a13812",
                "md5": "45865ccbada7c00097ebe207b7269548",
                "sha256": "f63204d4fedfa7fa77bc32cf63771ca609fb155b50eb1ccaaad7c0e52f73391e"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45865ccbada7c00097ebe207b7269548",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 848069,
            "upload_time": "2024-10-06T17:06:24",
            "upload_time_iso_8601": "2024-10-06T17:06:24.914903Z",
            "url": "https://files.pythonhosted.org/packages/02/5d/fbbe60f2fda9e7ddd1fc8bdb31ad24391836772ae12bbb244b7ed5a13812/git_codeowners-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f806a174a97ddc076521a60923c81c2c015b6d39c88e01a9db4bb9aabd771bd9",
                "md5": "bb3502d58678ff970b5b55dafec8f5c8",
                "sha256": "615a09087b937e6f68a16cfffd5591d21fbce5a7c0516c0305920a01a69cf375"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bb3502d58678ff970b5b55dafec8f5c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 819369,
            "upload_time": "2024-10-06T17:06:20",
            "upload_time_iso_8601": "2024-10-06T17:06:20.821818Z",
            "url": "https://files.pythonhosted.org/packages/f8/06/a174a97ddc076521a60923c81c2c015b6d39c88e01a9db4bb9aabd771bd9/git_codeowners-1.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d5c1d3c4261ec6a1eb026417e3bd9246077e67291381398bca73642c5ad5e5c",
                "md5": "43b272997d05bf4c129b0c31d545f3a1",
                "sha256": "47f14e3b7aa56d10bbc756ebf4654fb935a3c28396185fd99a5ada89fedbbe1c"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "43b272997d05bf4c129b0c31d545f3a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 917795,
            "upload_time": "2024-10-06T17:05:09",
            "upload_time_iso_8601": "2024-10-06T17:05:09.473974Z",
            "url": "https://files.pythonhosted.org/packages/5d/5c/1d3c4261ec6a1eb026417e3bd9246077e67291381398bca73642c5ad5e5c/git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "142c60cfa791446ccc64c1439cf2b829dc1cfe79e43f014875773c50f141ee7c",
                "md5": "5005e27c9eb557ab51df20989f8e9743",
                "sha256": "64f4ed92e0d59884a39185b4164b18e34920a756fe80911059dffb3e67026b91"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5005e27c9eb557ab51df20989f8e9743",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 890518,
            "upload_time": "2024-10-06T17:05:22",
            "upload_time_iso_8601": "2024-10-06T17:05:22.035928Z",
            "url": "https://files.pythonhosted.org/packages/14/2c/60cfa791446ccc64c1439cf2b829dc1cfe79e43f014875773c50f141ee7c/git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a01924ce436db1ecad1650ec1a655f0097b981a2b24632e527fdb07c243c412a",
                "md5": "ffd370e1c58b421cb1b3ec2e44449d10",
                "sha256": "cf2bd96cd86a409733055f418189f8513631e7b10a2cc2a918170d9efb3a3c47"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ffd370e1c58b421cb1b3ec2e44449d10",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 975284,
            "upload_time": "2024-10-06T17:06:00",
            "upload_time_iso_8601": "2024-10-06T17:06:00.376491Z",
            "url": "https://files.pythonhosted.org/packages/a0/19/24ce436db1ecad1650ec1a655f0097b981a2b24632e527fdb07c243c412a/git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cbfe32786e31edabc5555a53910e67432b8348ddf9743047af607b936744fa5",
                "md5": "9e08a4c6ee09233da795fc6c29906b17",
                "sha256": "ab6c563c1687d9e97b894bcc429e49e83e67c012e3c7c04e5440ffbe9b0a9059"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9e08a4c6ee09233da795fc6c29906b17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1005740,
            "upload_time": "2024-10-06T17:05:35",
            "upload_time_iso_8601": "2024-10-06T17:05:35.179624Z",
            "url": "https://files.pythonhosted.org/packages/1c/bf/e32786e31edabc5555a53910e67432b8348ddf9743047af607b936744fa5/git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89a35edb654aab0f1562ff1bd138b9ca734b455e01eeee688bd6768c9b712ce8",
                "md5": "273d655ef0f4de5aa49b6ca90e68969c",
                "sha256": "86346efc7421e80f75d1cd976d3078ad398fcee049eb005cdd5fedf98943994d"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "273d655ef0f4de5aa49b6ca90e68969c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1058148,
            "upload_time": "2024-10-06T17:05:47",
            "upload_time_iso_8601": "2024-10-06T17:05:47.592828Z",
            "url": "https://files.pythonhosted.org/packages/89/a3/5edb654aab0f1562ff1bd138b9ca734b455e01eeee688bd6768c9b712ce8/git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cb2d3f700cf3ed21f8f4237ac279cf8d27bb5db273af05858b871a2ceb39c4d",
                "md5": "878fa9b1cf92dff17a3e8e287f26f92e",
                "sha256": "0a024bc9fb7a44235fc8e07cb94e902208301584c189a764d0703020bbfd6fe2"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "878fa9b1cf92dff17a3e8e287f26f92e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 918269,
            "upload_time": "2024-10-06T17:06:11",
            "upload_time_iso_8601": "2024-10-06T17:06:11.891727Z",
            "url": "https://files.pythonhosted.org/packages/7c/b2/d3f700cf3ed21f8f4237ac279cf8d27bb5db273af05858b871a2ceb39c4d/git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4c347e1e04143fdd2d04342a22c612ae7e7962edac2ed9e883a684e3694b079",
                "md5": "6d99b17dd423535a585cd14c1381a9e7",
                "sha256": "fa598fceb206319333d4f46206bdb113ee97387f86d4fd45b74cb72e1c088f42"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d99b17dd423535a585cd14c1381a9e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 927074,
            "upload_time": "2024-10-06T17:06:28",
            "upload_time_iso_8601": "2024-10-06T17:06:28.993586Z",
            "url": "https://files.pythonhosted.org/packages/f4/c3/47e1e04143fdd2d04342a22c612ae7e7962edac2ed9e883a684e3694b079/git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c68988e4f9c6216ec6b79ac848248c1f6e4f389f658e0b719fb858875f7f6bbc",
                "md5": "8089663194de3cb15448ae553c903dcd",
                "sha256": "d5e357d942f945c24282c68360c0447192e25ce891c96c8585db7469e8751ad7"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8089663194de3cb15448ae553c903dcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 885275,
            "upload_time": "2024-10-06T17:06:40",
            "upload_time_iso_8601": "2024-10-06T17:06:40.086867Z",
            "url": "https://files.pythonhosted.org/packages/c6/89/88e4f9c6216ec6b79ac848248c1f6e4f389f658e0b719fb858875f7f6bbc/git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b16e472c4263835d4dae2265066dd710aea9876844586c74919896705ac4504e",
                "md5": "cd3aab6b99edb977f44f19e1d48361c0",
                "sha256": "a261e2f651f6b3aeece58d628c592e4f663958f1303318aed0779b5042004d6f"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cd3aab6b99edb977f44f19e1d48361c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 950026,
            "upload_time": "2024-10-06T17:06:50",
            "upload_time_iso_8601": "2024-10-06T17:06:50.334673Z",
            "url": "https://files.pythonhosted.org/packages/b1/6e/472c4263835d4dae2265066dd710aea9876844586c74919896705ac4504e/git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "741cf3681cecfd940448c4862b8da863efc586bc56f1a40c2ae530a4bc9b0f3b",
                "md5": "4f31fe1696fe3b61087a881bba66dc65",
                "sha256": "792be8dbcc45f59ee65188bfe2ff29afc8b60576065200940d706a9b386d89ae"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f31fe1696fe3b61087a881bba66dc65",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 949178,
            "upload_time": "2024-10-06T17:07:01",
            "upload_time_iso_8601": "2024-10-06T17:07:01.673088Z",
            "url": "https://files.pythonhosted.org/packages/74/1c/f3681cecfd940448c4862b8da863efc586bc56f1a40c2ae530a4bc9b0f3b/git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "673e25007a7af90fbac923352ce7c520905c936f2afbb97ab05a7f3b460d3800",
                "md5": "7cb0b2d8c6e53cb0ef6d3f1d742217f5",
                "sha256": "68fc8619bd8ffab625b611cba9854e911276f57f76cc974ab9cea2d7283c8917"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "7cb0b2d8c6e53cb0ef6d3f1d742217f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1318741,
            "upload_time": "2024-10-06T17:07:20",
            "upload_time_iso_8601": "2024-10-06T17:07:20.955309Z",
            "url": "https://files.pythonhosted.org/packages/67/3e/25007a7af90fbac923352ce7c520905c936f2afbb97ab05a7f3b460d3800/git_codeowners-1.1.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "146cec4e7e59f78700f5498fb8244a41c67099f037f6eaa89506a2b978b0f33a",
                "md5": "acae17ec80682dbffc1d2bd5c4fad2c7",
                "sha256": "2158df2c570ca0422be3a94f8e2786bb7f56f8f7d9d2a2f6661fcf0a03132163"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "acae17ec80682dbffc1d2bd5c4fad2c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1404366,
            "upload_time": "2024-10-06T17:07:13",
            "upload_time_iso_8601": "2024-10-06T17:07:13.929260Z",
            "url": "https://files.pythonhosted.org/packages/14/6c/ec4e7e59f78700f5498fb8244a41c67099f037f6eaa89506a2b978b0f33a/git_codeowners-1.1.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62ebb1ba04ea79e9003cb867a82905426a1fa8cf010d356d19b3548a0d72bf7f",
                "md5": "a85a04657341765e8cf5558add581007",
                "sha256": "9f5f3c724ee80952a7d71b5add92504474a808c375e6c1cef767178957a5a917"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a85a04657341765e8cf5558add581007",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 848069,
            "upload_time": "2024-10-06T17:06:26",
            "upload_time_iso_8601": "2024-10-06T17:06:26.373867Z",
            "url": "https://files.pythonhosted.org/packages/62/eb/b1ba04ea79e9003cb867a82905426a1fa8cf010d356d19b3548a0d72bf7f/git_codeowners-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e9f45bcbf67af1f219ba1dfa3678122f92488db03fb45bd0252b4e99c16335d",
                "md5": "9c3c89bdee9e71f89162f6b9b647c769",
                "sha256": "0583076eb135151970139c3bd68da8d1993199bf1c8f5c279859090b8df79a0a"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9c3c89bdee9e71f89162f6b9b647c769",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 819367,
            "upload_time": "2024-10-06T17:06:21",
            "upload_time_iso_8601": "2024-10-06T17:06:21.997997Z",
            "url": "https://files.pythonhosted.org/packages/1e/9f/45bcbf67af1f219ba1dfa3678122f92488db03fb45bd0252b4e99c16335d/git_codeowners-1.1.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4810095e4cd82db098fd83d30a38dcc4cb2a182e17671ad9e71f7382ed481ce6",
                "md5": "957d30edab34d75cd14d1d2529287cff",
                "sha256": "97d853ef822a67ce3c6563cc513f9eea3e64c19b0e23a7dc34384a62624f53c3"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "957d30edab34d75cd14d1d2529287cff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 917795,
            "upload_time": "2024-10-06T17:05:10",
            "upload_time_iso_8601": "2024-10-06T17:05:10.731883Z",
            "url": "https://files.pythonhosted.org/packages/48/10/095e4cd82db098fd83d30a38dcc4cb2a182e17671ad9e71f7382ed481ce6/git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4aa0b13975c3264e2ad5c9818ee52119dc8f4d5c69d052befc0ec9ac91443ae",
                "md5": "1216f293777006a3a60de5d4cad82b52",
                "sha256": "6972bfe8da6cf67b61802604918a673ec5dc83a1f754e205c71ac88c593ed16c"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1216f293777006a3a60de5d4cad82b52",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 890516,
            "upload_time": "2024-10-06T17:05:23",
            "upload_time_iso_8601": "2024-10-06T17:05:23.828194Z",
            "url": "https://files.pythonhosted.org/packages/b4/aa/0b13975c3264e2ad5c9818ee52119dc8f4d5c69d052befc0ec9ac91443ae/git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b08622a1d54d19b6a094f6acb3c23b90f15dbba71e3d4044110a942aa77e56",
                "md5": "8f83d657daa074dc3a40e6c5f91e8b54",
                "sha256": "c1f54601b6873058d08b55b6e2ff486ae31dcb7c63551aa56c29d9bf0da98483"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8f83d657daa074dc3a40e6c5f91e8b54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 975285,
            "upload_time": "2024-10-06T17:06:02",
            "upload_time_iso_8601": "2024-10-06T17:06:02.551608Z",
            "url": "https://files.pythonhosted.org/packages/19/b0/8622a1d54d19b6a094f6acb3c23b90f15dbba71e3d4044110a942aa77e56/git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "630bd602c38792ebdca62e1f485d1297b9995bcba0cd2a1cec1473df3412e320",
                "md5": "24c52a3e38cfe5ad42c1492e549b25dc",
                "sha256": "206c586205e47c9d596831007e1688086a4d7bfbfb905190db4fd138cfa3da96"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "24c52a3e38cfe5ad42c1492e549b25dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1005740,
            "upload_time": "2024-10-06T17:05:36",
            "upload_time_iso_8601": "2024-10-06T17:05:36.814706Z",
            "url": "https://files.pythonhosted.org/packages/63/0b/d602c38792ebdca62e1f485d1297b9995bcba0cd2a1cec1473df3412e320/git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6aec4a7a6471301aa249011c5a6ff636ac00e9c0620188cb28f242b3195eacb1",
                "md5": "7f8ec230a4a2a749f7d450d4bbb9e85c",
                "sha256": "993240d6fcd78af6e40cef33f56ceef607f0bed1e7c903e5e3824d03df911b0d"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f8ec230a4a2a749f7d450d4bbb9e85c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1058149,
            "upload_time": "2024-10-06T17:05:48",
            "upload_time_iso_8601": "2024-10-06T17:05:48.804088Z",
            "url": "https://files.pythonhosted.org/packages/6a/ec/4a7a6471301aa249011c5a6ff636ac00e9c0620188cb28f242b3195eacb1/git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fa8cb2a3547cf81a02dbc59578c7adc2f25f36b7718ef685de8d610757aeb97",
                "md5": "3493e0318d01481b5dc0a746cafb4662",
                "sha256": "bbd4bcc4892cc06be56232d605ddd9c63aa6bf9007ff6b9b3ec8214f4dca8b1a"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3493e0318d01481b5dc0a746cafb4662",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 918268,
            "upload_time": "2024-10-06T17:06:13",
            "upload_time_iso_8601": "2024-10-06T17:06:13.070014Z",
            "url": "https://files.pythonhosted.org/packages/7f/a8/cb2a3547cf81a02dbc59578c7adc2f25f36b7718ef685de8d610757aeb97/git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88664580139e939ac11053e4e0d71c9ac0b996479b5367e115c827d4b65d89d0",
                "md5": "48b32ad5f8e6f3255064e43cc36b727d",
                "sha256": "bfbdb600b796502c17bac2035c556e054088cafae68e247c9f19301151ea18c6"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48b32ad5f8e6f3255064e43cc36b727d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 927074,
            "upload_time": "2024-10-06T17:06:30",
            "upload_time_iso_8601": "2024-10-06T17:06:30.216127Z",
            "url": "https://files.pythonhosted.org/packages/88/66/4580139e939ac11053e4e0d71c9ac0b996479b5367e115c827d4b65d89d0/git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c53c3191af2f69c000547f584d052ee687ee8c8b1b659d98f1c9a73bc9a5ae9",
                "md5": "68e367008a803f4168222b275e941b89",
                "sha256": "d394c25d320f4a756cb8ecc1dae1477549d25ca86de1d65771c16d76c66ad619"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "68e367008a803f4168222b275e941b89",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 885275,
            "upload_time": "2024-10-06T17:06:41",
            "upload_time_iso_8601": "2024-10-06T17:06:41.328654Z",
            "url": "https://files.pythonhosted.org/packages/5c/53/c3191af2f69c000547f584d052ee687ee8c8b1b659d98f1c9a73bc9a5ae9/git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4980e66dbc9d2d348943060c09d685c83e008ad4fb3d5c6e503384f8add1566",
                "md5": "28eb665bf49f7b938499dab1d220864f",
                "sha256": "b8bc987cb33860e214fbd68ca0b6e2b21f3c93b02dd6ef717ecfb57c443548a5"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "28eb665bf49f7b938499dab1d220864f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 950026,
            "upload_time": "2024-10-06T17:06:51",
            "upload_time_iso_8601": "2024-10-06T17:06:51.656695Z",
            "url": "https://files.pythonhosted.org/packages/b4/98/0e66dbc9d2d348943060c09d685c83e008ad4fb3d5c6e503384f8add1566/git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36da09dd607d94d7d3aaf2263e27f0f5cedd5914effeaace38f422a580524d1d",
                "md5": "8682c696451cdf275e7a6d386f20542d",
                "sha256": "f0019862dbc8bcaf897b82e70ee0b9a6c28bdeb8ee692a0653c343ae9bd810f2"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8682c696451cdf275e7a6d386f20542d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 949177,
            "upload_time": "2024-10-06T17:07:03",
            "upload_time_iso_8601": "2024-10-06T17:07:03.465840Z",
            "url": "https://files.pythonhosted.org/packages/36/da/09dd607d94d7d3aaf2263e27f0f5cedd5914effeaace38f422a580524d1d/git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2beead79f239e6b7d6c73accadaf45e53ad072d47df9bfab35977e45253251dc",
                "md5": "a90e7d693b2ed01aa22282fcce1a47c5",
                "sha256": "752e2bb68aacf0932e5ac45344b497c8cb88b5cf8103a68f4bf8ce83a9c98319"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a90e7d693b2ed01aa22282fcce1a47c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1318740,
            "upload_time": "2024-10-06T17:07:22",
            "upload_time_iso_8601": "2024-10-06T17:07:22.465673Z",
            "url": "https://files.pythonhosted.org/packages/2b/ee/ad79f239e6b7d6c73accadaf45e53ad072d47df9bfab35977e45253251dc/git_codeowners-1.1.2-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cabac3df02462a75877c1d7563cc5b90fc8110f408f2f092e3664a77f5acc3c",
                "md5": "8e06e327f7d53f6e6003df51818184c5",
                "sha256": "66b51bd0e1ddb465b175aedaf2865a936327d44dbd64409886ee119d882f59ce"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e06e327f7d53f6e6003df51818184c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1404366,
            "upload_time": "2024-10-06T17:07:15",
            "upload_time_iso_8601": "2024-10-06T17:07:15.442827Z",
            "url": "https://files.pythonhosted.org/packages/9c/ab/ac3df02462a75877c1d7563cc5b90fc8110f408f2f092e3664a77f5acc3c/git_codeowners-1.1.2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9573411db42cbd6905d63848f9e5e9e90fdb2c79dad22bc439451e23005e99dc",
                "md5": "093222b250a42af954e7bf590854b2c0",
                "sha256": "f3e6b2bb3852169c729f46356b16a1d46b1d19b51cf9f3b4d13e9536f655063c"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "093222b250a42af954e7bf590854b2c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 917796,
            "upload_time": "2024-10-06T17:05:11",
            "upload_time_iso_8601": "2024-10-06T17:05:11.995797Z",
            "url": "https://files.pythonhosted.org/packages/95/73/411db42cbd6905d63848f9e5e9e90fdb2c79dad22bc439451e23005e99dc/git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fda431c859ae7f83dc44dafd0f8f4358731b6b6893868253e1afa8d3f9688fd6",
                "md5": "c909caba37e3118f76631db86b06d11e",
                "sha256": "6120511c9f59754916cd85c120abee7778ff46429c94fa3484ba302006c659a0"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c909caba37e3118f76631db86b06d11e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 890518,
            "upload_time": "2024-10-06T17:05:25",
            "upload_time_iso_8601": "2024-10-06T17:05:25.624692Z",
            "url": "https://files.pythonhosted.org/packages/fd/a4/31c859ae7f83dc44dafd0f8f4358731b6b6893868253e1afa8d3f9688fd6/git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "530caf03c17e902306dc281d9846a9e2f1b79e3e79485915ecbff529669e4616",
                "md5": "7c55b9b70fe7949411bf74420315495d",
                "sha256": "9251128783d48918a0384e3a36efe497f9f1019436f26d143e8096385affaa03"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7c55b9b70fe7949411bf74420315495d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 975284,
            "upload_time": "2024-10-06T17:06:04",
            "upload_time_iso_8601": "2024-10-06T17:06:04.351520Z",
            "url": "https://files.pythonhosted.org/packages/53/0c/af03c17e902306dc281d9846a9e2f1b79e3e79485915ecbff529669e4616/git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "754883fc4064ab4e59fc2f8032b9f6b60da9d7b2bac8c6952ee22476ae775c3a",
                "md5": "5c8ffb6286cde93a38a1dad97fcff969",
                "sha256": "dcb1ea314646e2c028b20b1080b80b313048ab945fb597b6b04efa7a3039e45e"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5c8ffb6286cde93a38a1dad97fcff969",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1005740,
            "upload_time": "2024-10-06T17:05:38",
            "upload_time_iso_8601": "2024-10-06T17:05:38.322459Z",
            "url": "https://files.pythonhosted.org/packages/75/48/83fc4064ab4e59fc2f8032b9f6b60da9d7b2bac8c6952ee22476ae775c3a/git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46caae41d2052190ba08914f864ec2caadd26420cac4026bb535ca9f44ed97f8",
                "md5": "a37e362394fcc99f426adf7e9adcc87d",
                "sha256": "50af31e75abb7b1d73c816a3ad96a7fff67a48ba89d5b8b772b96421301e4bdd"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a37e362394fcc99f426adf7e9adcc87d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1058148,
            "upload_time": "2024-10-06T17:05:49",
            "upload_time_iso_8601": "2024-10-06T17:05:49.989777Z",
            "url": "https://files.pythonhosted.org/packages/46/ca/ae41d2052190ba08914f864ec2caadd26420cac4026bb535ca9f44ed97f8/git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bd0b336965a50a54154fb972ad97f7dbd9b445eb4c98ed6d59fb680db17f5ca",
                "md5": "655f57eb4bd8d0816c4ce40867381116",
                "sha256": "77573cd91f374a9bee47aa5916d7bebfca17c86b1639183eceb20906552965f9"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "655f57eb4bd8d0816c4ce40867381116",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 918269,
            "upload_time": "2024-10-06T17:06:14",
            "upload_time_iso_8601": "2024-10-06T17:06:14.316045Z",
            "url": "https://files.pythonhosted.org/packages/7b/d0/b336965a50a54154fb972ad97f7dbd9b445eb4c98ed6d59fb680db17f5ca/git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3cbbdac0fa02b60aa6d2bd53d0a065cab1575e2de205debdbdf5ba976ee8148",
                "md5": "75d81e833b07a53a503b179434f002aa",
                "sha256": "14542688b8adcac34cd3274536a33feca8dab54c588ac19a70497daf4d2dccc1"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "75d81e833b07a53a503b179434f002aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 927074,
            "upload_time": "2024-10-06T17:06:31",
            "upload_time_iso_8601": "2024-10-06T17:06:31.757994Z",
            "url": "https://files.pythonhosted.org/packages/d3/cb/bdac0fa02b60aa6d2bd53d0a065cab1575e2de205debdbdf5ba976ee8148/git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4be93c2a4507695c48eef081b946addc80f8517ccb8165bbee0329de73184f17",
                "md5": "02863b58d9a020b727bc112215a9651f",
                "sha256": "f77bcfbbc21d41e6cab54cb54481fb4d4898f538a35e55060d4b719ae95724ff"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "02863b58d9a020b727bc112215a9651f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 885275,
            "upload_time": "2024-10-06T17:06:42",
            "upload_time_iso_8601": "2024-10-06T17:06:42.526312Z",
            "url": "https://files.pythonhosted.org/packages/4b/e9/3c2a4507695c48eef081b946addc80f8517ccb8165bbee0329de73184f17/git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f42f3cf9c226d75dd124703fc2fadd0e544ce7348ebe97c962b5a3d07be78b65",
                "md5": "05419df866c287732087fb6315b0c48c",
                "sha256": "80ae0f815d934b06dcdbb220961d47218224341c16c29a54e2f793e9881ce2e0"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "05419df866c287732087fb6315b0c48c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 950031,
            "upload_time": "2024-10-06T17:06:52",
            "upload_time_iso_8601": "2024-10-06T17:06:52.907981Z",
            "url": "https://files.pythonhosted.org/packages/f4/2f/3cf9c226d75dd124703fc2fadd0e544ce7348ebe97c962b5a3d07be78b65/git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d5b58a4f6922d9e971c4ded1e04765c29c1dd7d441e2e4f840f4d3398b8bea7",
                "md5": "968028325c4e2a574231a26c34e7bd1f",
                "sha256": "00903a72ba7af9c130073790c670698a2931d5149e2d36d1ba0a30dafa761aa3"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "968028325c4e2a574231a26c34e7bd1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 949176,
            "upload_time": "2024-10-06T17:07:04",
            "upload_time_iso_8601": "2024-10-06T17:07:04.785730Z",
            "url": "https://files.pythonhosted.org/packages/3d/5b/58a4f6922d9e971c4ded1e04765c29c1dd7d441e2e4f840f4d3398b8bea7/git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9761b40dd889c859b67ca090ab255cbe2b879a1096073ef4d07c774b067c72c",
                "md5": "db5721c53ddb8c9e1abbb64139f96921",
                "sha256": "099508486cbedf064447e653ebf70e86a1911e2b53dea1d2ee927e25c5b0c5a0"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "db5721c53ddb8c9e1abbb64139f96921",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1318741,
            "upload_time": "2024-10-06T17:07:24",
            "upload_time_iso_8601": "2024-10-06T17:07:24.034908Z",
            "url": "https://files.pythonhosted.org/packages/c9/76/1b40dd889c859b67ca090ab255cbe2b879a1096073ef4d07c774b067c72c/git_codeowners-1.1.2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df241a7b980310a43c7ec98bbd08b72e4eb2329213bd6675eab4ccba5ebe634c",
                "md5": "fe8e41cc142c703f3529f9c27f6e3e49",
                "sha256": "6f8849b20235f6e133e3fb14f3b97bc71668a1b4f70c6eeb4aee7427728be0b7"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fe8e41cc142c703f3529f9c27f6e3e49",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1404366,
            "upload_time": "2024-10-06T17:07:16",
            "upload_time_iso_8601": "2024-10-06T17:07:16.704938Z",
            "url": "https://files.pythonhosted.org/packages/df/24/1a7b980310a43c7ec98bbd08b72e4eb2329213bd6675eab4ccba5ebe634c/git_codeowners-1.1.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47cb0eec20f88ad45b95551c3c30bb5e335209d69aec782d2331946f3b9d4801",
                "md5": "5d2ef10a15a593469d9ef92dc7b23088",
                "sha256": "08d7b2120f2096b14c4d4fa009999f7280a2a22c14ae02844481e1f6e7ca16d9"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d2ef10a15a593469d9ef92dc7b23088",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 819366,
            "upload_time": "2024-10-06T17:06:23",
            "upload_time_iso_8601": "2024-10-06T17:06:23.187851Z",
            "url": "https://files.pythonhosted.org/packages/47/cb/0eec20f88ad45b95551c3c30bb5e335209d69aec782d2331946f3b9d4801/git_codeowners-1.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4da8ca365bf03b746cfe18f25bf6aa9180436af54baf11e68edcd0f387ce287",
                "md5": "62c0f5954b0f765556b721eaaf834758",
                "sha256": "b675ddc7342e063668006d1861ba31fafd26400b0e27c196026c51150436d572"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "62c0f5954b0f765556b721eaaf834758",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 917795,
            "upload_time": "2024-10-06T17:05:13",
            "upload_time_iso_8601": "2024-10-06T17:05:13.745898Z",
            "url": "https://files.pythonhosted.org/packages/d4/da/8ca365bf03b746cfe18f25bf6aa9180436af54baf11e68edcd0f387ce287/git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "228fa52e218837292bef0d29b9d8ba4e3b3dab9cd811c64e46121db4f8f0646e",
                "md5": "b7a8c9e77582382bd98fbbbf7078ea4c",
                "sha256": "689ab948e8fb872e4865c70d9bd5b943db6b4b7e240dd0c95a3cc814135331fc"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b7a8c9e77582382bd98fbbbf7078ea4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 890519,
            "upload_time": "2024-10-06T17:05:27",
            "upload_time_iso_8601": "2024-10-06T17:05:27.384259Z",
            "url": "https://files.pythonhosted.org/packages/22/8f/a52e218837292bef0d29b9d8ba4e3b3dab9cd811c64e46121db4f8f0646e/git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "561c576014d4cd77e287a91cb1cd76362b3605600f813f88afb527516361a1fb",
                "md5": "e77c4797967c325141d83f114eaed954",
                "sha256": "fbdaa6aa8a94043f9f250c6f20d342c81f0dff4271848d06152a8a7973e6c60a"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e77c4797967c325141d83f114eaed954",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 975285,
            "upload_time": "2024-10-06T17:06:06",
            "upload_time_iso_8601": "2024-10-06T17:06:06.167872Z",
            "url": "https://files.pythonhosted.org/packages/56/1c/576014d4cd77e287a91cb1cd76362b3605600f813f88afb527516361a1fb/git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac5f09a3f3b5c0c20e54ea346b59ef6802874600a84061226bfa7553a1776c6b",
                "md5": "6f3a829439b367ddf86c03c7f4461ebb",
                "sha256": "fe3b5aac13a829e41f24b5faf5476d6b055168f015d152835773597f699c9f90"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6f3a829439b367ddf86c03c7f4461ebb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1005740,
            "upload_time": "2024-10-06T17:05:40",
            "upload_time_iso_8601": "2024-10-06T17:05:40.054761Z",
            "url": "https://files.pythonhosted.org/packages/ac/5f/09a3f3b5c0c20e54ea346b59ef6802874600a84061226bfa7553a1776c6b/git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d44618cbae4e1e5e1e81050fc9c83f7c7f468bfa8581821fd9c0883de48b18a7",
                "md5": "8967823ee6a7c833913d8ecdd994c9c2",
                "sha256": "614a9b2c190abc48f8be124b946591984339d0da91d87e19bee91520cbcafc81"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8967823ee6a7c833913d8ecdd994c9c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1058148,
            "upload_time": "2024-10-06T17:05:51",
            "upload_time_iso_8601": "2024-10-06T17:05:51.403253Z",
            "url": "https://files.pythonhosted.org/packages/d4/46/18cbae4e1e5e1e81050fc9c83f7c7f468bfa8581821fd9c0883de48b18a7/git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d83e067dc1565b12a52d9ffb17b4df2b72856b31daa30b7b7814db5862a785c0",
                "md5": "d8558b135a608bf7de250ec0c04f39f2",
                "sha256": "84e726505ba6aa494aa04064b83982d16d2fae7a2d9722fc60ec6c0a94b40ad3"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8558b135a608bf7de250ec0c04f39f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 918269,
            "upload_time": "2024-10-06T17:06:15",
            "upload_time_iso_8601": "2024-10-06T17:06:15.523353Z",
            "url": "https://files.pythonhosted.org/packages/d8/3e/067dc1565b12a52d9ffb17b4df2b72856b31daa30b7b7814db5862a785c0/git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3f19f3996dc4febd70150bf17d1813f22698f5c2f71a8240ed29275a387e42f",
                "md5": "5e6074fcf3850eaaedf3e12e89a67277",
                "sha256": "22c9a47fd8e7984356edd90b517739436aa337925647c31fad042481e8fbd6d8"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5e6074fcf3850eaaedf3e12e89a67277",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 927075,
            "upload_time": "2024-10-06T17:06:33",
            "upload_time_iso_8601": "2024-10-06T17:06:33.344170Z",
            "url": "https://files.pythonhosted.org/packages/e3/f1/9f3996dc4febd70150bf17d1813f22698f5c2f71a8240ed29275a387e42f/git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1ebf853f1bd42246cf5b7ee16490b5b61b6ee75c83cc1b81772958a850f293b",
                "md5": "ae502231708b61858943e40c9539c3c2",
                "sha256": "440c9f37c2c144a52e1c02bf438a1aa740dc72f18875ca734aac54eb15660511"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ae502231708b61858943e40c9539c3c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 885275,
            "upload_time": "2024-10-06T17:06:43",
            "upload_time_iso_8601": "2024-10-06T17:06:43.725634Z",
            "url": "https://files.pythonhosted.org/packages/d1/eb/f853f1bd42246cf5b7ee16490b5b61b6ee75c83cc1b81772958a850f293b/git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4ee8c140a6f7bda6a17ceeacfda78fa2c0560b564f30027cc3e1e257369ed79",
                "md5": "6cf5edc1391859bcb686ac7314b97440",
                "sha256": "bee17bc1753a4f849701c403cee65b347ba7d7bf51e0cee29c50bb570ee1e96e"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6cf5edc1391859bcb686ac7314b97440",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 950030,
            "upload_time": "2024-10-06T17:06:54",
            "upload_time_iso_8601": "2024-10-06T17:06:54.569247Z",
            "url": "https://files.pythonhosted.org/packages/f4/ee/8c140a6f7bda6a17ceeacfda78fa2c0560b564f30027cc3e1e257369ed79/git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b9e08e3d5ea82df045e13e746bcf6e2145366a22bb654b310142a27803f88a6",
                "md5": "ad3cc19413e3ac7016288cc4478d39a3",
                "sha256": "316439d69b534fc35c27b4a78c37806ee3cd91d0a684fc21be12d97224748a6d"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad3cc19413e3ac7016288cc4478d39a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 949176,
            "upload_time": "2024-10-06T17:07:06",
            "upload_time_iso_8601": "2024-10-06T17:07:06.071954Z",
            "url": "https://files.pythonhosted.org/packages/7b/9e/08e3d5ea82df045e13e746bcf6e2145366a22bb654b310142a27803f88a6/git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "289ec487579f9e3ad7f3d43cde7fb459a1d3f917411385770d6694114d7c6de4",
                "md5": "2c547c9eb77a2712dffde819c3222a25",
                "sha256": "58d383573cc752bd0c9ecfb47291fc5b7777de9522a334db192d262d4048b929"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2c547c9eb77a2712dffde819c3222a25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1318741,
            "upload_time": "2024-10-06T17:07:25",
            "upload_time_iso_8601": "2024-10-06T17:07:25.352373Z",
            "url": "https://files.pythonhosted.org/packages/28/9e/c487579f9e3ad7f3d43cde7fb459a1d3f917411385770d6694114d7c6de4/git_codeowners-1.1.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "982a4214d0df561ab760593aa7ffaf4f2a4f19ab2418a962ddbb9ecc358161b3",
                "md5": "71da0abda220b39d5d1f54965610f2ac",
                "sha256": "250110c1b92ec0d341132935f321aa965b3414664c2f2732df8801ffde2d2f7b"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71da0abda220b39d5d1f54965610f2ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1404369,
            "upload_time": "2024-10-06T17:07:18",
            "upload_time_iso_8601": "2024-10-06T17:07:18.177843Z",
            "url": "https://files.pythonhosted.org/packages/98/2a/4214d0df561ab760593aa7ffaf4f2a4f19ab2418a962ddbb9ecc358161b3/git_codeowners-1.1.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3377c14f8c4bf66cf87071131439c6ab994a1c007bad92446f41c56f71c03ea7",
                "md5": "736519a9ca8c7d387074ef53640af285",
                "sha256": "e0caa2d808b1d3d1339ca82b82f99533cd5c4905a85644d5704ef8e57fc7be15"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "736519a9ca8c7d387074ef53640af285",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 917799,
            "upload_time": "2024-10-06T17:05:14",
            "upload_time_iso_8601": "2024-10-06T17:05:14.906968Z",
            "url": "https://files.pythonhosted.org/packages/33/77/c14f8c4bf66cf87071131439c6ab994a1c007bad92446f41c56f71c03ea7/git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e13fa50c4544e5d79ce68d4bc2648b9a282bbb5888559713d138fb0445e3acc4",
                "md5": "07c32ce1bcfddf6147850c23bdacc3fc",
                "sha256": "04c8afb044d20da681d45f00876e9aaadf31ec64ed58b511b11e69663c281abf"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "07c32ce1bcfddf6147850c23bdacc3fc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 890524,
            "upload_time": "2024-10-06T17:05:28",
            "upload_time_iso_8601": "2024-10-06T17:05:28.925003Z",
            "url": "https://files.pythonhosted.org/packages/e1/3f/a50c4544e5d79ce68d4bc2648b9a282bbb5888559713d138fb0445e3acc4/git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a78fb0f581ae154fb07ec598626c29be885b84ffd5ca0568595c0fa9f9afee4",
                "md5": "79dc2497e7a942d23aab64ae4c96eacd",
                "sha256": "06fdbc993f6c563837075533177e07e50958077ff086a4ec854230989d30ed4d"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "79dc2497e7a942d23aab64ae4c96eacd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 975293,
            "upload_time": "2024-10-06T17:06:08",
            "upload_time_iso_8601": "2024-10-06T17:06:08.036519Z",
            "url": "https://files.pythonhosted.org/packages/4a/78/fb0f581ae154fb07ec598626c29be885b84ffd5ca0568595c0fa9f9afee4/git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "228a70bb88b2ec61df69f1aa97f3642320339ebb7b7fed9e50ed04f8a7d91c04",
                "md5": "42b7008dad1a09b1e684715d4b8dccad",
                "sha256": "b6549d81bc2c269f8afc84fb622027e321f6847bdde6a0694a8dd07af3548557"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "42b7008dad1a09b1e684715d4b8dccad",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1005745,
            "upload_time": "2024-10-06T17:05:41",
            "upload_time_iso_8601": "2024-10-06T17:05:41.620561Z",
            "url": "https://files.pythonhosted.org/packages/22/8a/70bb88b2ec61df69f1aa97f3642320339ebb7b7fed9e50ed04f8a7d91c04/git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "615cf496e6426c8b2368add0f9931348e966ca566aad490e493626f939ed69ad",
                "md5": "0dcbacb8b54c87686d52f76b3216a3c9",
                "sha256": "09ad461f92f1c64bdf1c0729cd5a6f9e9c1bfd174b853b55be0efb1f923937f7"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0dcbacb8b54c87686d52f76b3216a3c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1058154,
            "upload_time": "2024-10-06T17:05:52",
            "upload_time_iso_8601": "2024-10-06T17:05:52.934261Z",
            "url": "https://files.pythonhosted.org/packages/61/5c/f496e6426c8b2368add0f9931348e966ca566aad490e493626f939ed69ad/git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28ff10bedaae143441f9176e21fa355d63a9bf618f217d1a0524d81ebf2a4f17",
                "md5": "bedf432d4f38c72dd34b4a5199208344",
                "sha256": "292134c33cb5a451889de56732de80fa8b4cf40b2b2a9c4242bba8eddcaab6c0"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bedf432d4f38c72dd34b4a5199208344",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 918274,
            "upload_time": "2024-10-06T17:06:16",
            "upload_time_iso_8601": "2024-10-06T17:06:16.753363Z",
            "url": "https://files.pythonhosted.org/packages/28/ff/10bedaae143441f9176e21fa355d63a9bf618f217d1a0524d81ebf2a4f17/git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bef524ae9ba984e655462a7a48c4c2118eded80156b7b4c480e05ee849c21fb5",
                "md5": "f933a2cc1bffbc9e6165bafc60c05aab",
                "sha256": "55bcdd2b940f67a2baf4a404a51a8c35babd510a76eae6430f88bb0aed90a09a"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f933a2cc1bffbc9e6165bafc60c05aab",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 927079,
            "upload_time": "2024-10-06T17:06:34",
            "upload_time_iso_8601": "2024-10-06T17:06:34.923971Z",
            "url": "https://files.pythonhosted.org/packages/be/f5/24ae9ba984e655462a7a48c4c2118eded80156b7b4c480e05ee849c21fb5/git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dba8ce11f80df9528395046ddc2ba48c27bbfddd58f4d547aa14b3332041c36e",
                "md5": "cb0f92f04d33194efa30d818a90209c9",
                "sha256": "ae97ec091fe325b4cd8345dfc8cc3bf69340ea2d9acd9eddb6af957988df1622"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cb0f92f04d33194efa30d818a90209c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 885280,
            "upload_time": "2024-10-06T17:06:45",
            "upload_time_iso_8601": "2024-10-06T17:06:45.087130Z",
            "url": "https://files.pythonhosted.org/packages/db/a8/ce11f80df9528395046ddc2ba48c27bbfddd58f4d547aa14b3332041c36e/git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1298845d777ee9950cfdb873a057b423eb44e202c6ffb4ef58f36c4f0be3e305",
                "md5": "e3bf31d497ccaa1d4965ea4269cbc470",
                "sha256": "645b04b9a11e07179e78d9b355e1f75160b8a5d3219ceb9a9aa542b9185d4d84"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e3bf31d497ccaa1d4965ea4269cbc470",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 950031,
            "upload_time": "2024-10-06T17:06:56",
            "upload_time_iso_8601": "2024-10-06T17:06:56.399675Z",
            "url": "https://files.pythonhosted.org/packages/12/98/845d777ee9950cfdb873a057b423eb44e202c6ffb4ef58f36c4f0be3e305/git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26cf4ec8f2c14e81c38ac1f2f6001fe12ec03e39217e137daaa47cb0f15ef4ea",
                "md5": "8128b020cb14c8dcb32bb80bc83f9c9d",
                "sha256": "51a34cb9892b3dc803e93e56ca9d6402fa34be482cec99567de08cd2bc2433de"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8128b020cb14c8dcb32bb80bc83f9c9d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 949183,
            "upload_time": "2024-10-06T17:07:07",
            "upload_time_iso_8601": "2024-10-06T17:07:07.303830Z",
            "url": "https://files.pythonhosted.org/packages/26/cf/4ec8f2c14e81c38ac1f2f6001fe12ec03e39217e137daaa47cb0f15ef4ea/git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0401dee8113d28e86b2d1150d824195d434e52a8830d4bae5394f91fe948691b",
                "md5": "bcab55e64e574471e3436791c05eca5f",
                "sha256": "03b726dd53c3ef21622e09cd0f6cbb2c6eb20fe474ca6aaa99d1d1b5ec9a560c"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bcab55e64e574471e3436791c05eca5f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 917797,
            "upload_time": "2024-10-06T17:05:16",
            "upload_time_iso_8601": "2024-10-06T17:05:16.667777Z",
            "url": "https://files.pythonhosted.org/packages/04/01/dee8113d28e86b2d1150d824195d434e52a8830d4bae5394f91fe948691b/git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1dead310166386169b625d7374caa2b40c9e3536d50dc5bf104a11756b1f6e9e",
                "md5": "0cd922f0dc687bc9262bbf693af666c3",
                "sha256": "68ffa6c27b62c2b23ecf8c584336a4c0269d7dde553ba9a137ba770490d27050"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0cd922f0dc687bc9262bbf693af666c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 890523,
            "upload_time": "2024-10-06T17:05:30",
            "upload_time_iso_8601": "2024-10-06T17:05:30.939430Z",
            "url": "https://files.pythonhosted.org/packages/1d/ea/d310166386169b625d7374caa2b40c9e3536d50dc5bf104a11756b1f6e9e/git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "279e0197a727b6d7dc03f84efdb45862299bf52f617896367e2d45a7aced37b0",
                "md5": "738449608670a8a90d08f6094668c946",
                "sha256": "dc9eda68959d53deef09d531617444e661ab3fe2a7a62d52b791e7fa9f0955e3"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "738449608670a8a90d08f6094668c946",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1005742,
            "upload_time": "2024-10-06T17:05:43",
            "upload_time_iso_8601": "2024-10-06T17:05:43.316764Z",
            "url": "https://files.pythonhosted.org/packages/27/9e/0197a727b6d7dc03f84efdb45862299bf52f617896367e2d45a7aced37b0/git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a2837bdcda7b70a352ba08347544906b9f4f3a61b407568133960113140c3dd",
                "md5": "b42d8f5733dc88f99a390e9f4b247a45",
                "sha256": "b61e66eeff3623baf78ff1e336f1c3dfa2d3eb78285fb320bfb40790bce1f41b"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b42d8f5733dc88f99a390e9f4b247a45",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1058151,
            "upload_time": "2024-10-06T17:05:54",
            "upload_time_iso_8601": "2024-10-06T17:05:54.277400Z",
            "url": "https://files.pythonhosted.org/packages/1a/28/37bdcda7b70a352ba08347544906b9f4f3a61b407568133960113140c3dd/git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fcb87d525035d4e91ff8dea6e20e38f58108a651133e91f5be1b660be1d4a8d9",
                "md5": "fc32db6869be5fa0a61007171a961450",
                "sha256": "ea7a036109c82ce74127f2e12c2330d6b0e02bf44806087cafeaebcff7d429f7"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc32db6869be5fa0a61007171a961450",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 927078,
            "upload_time": "2024-10-06T17:06:36",
            "upload_time_iso_8601": "2024-10-06T17:06:36.102311Z",
            "url": "https://files.pythonhosted.org/packages/fc/b8/7d525035d4e91ff8dea6e20e38f58108a651133e91f5be1b660be1d4a8d9/git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67c8b7b6713b6c57154a760b6d65633d09f76a12e7bff887e977a1bb9a804905",
                "md5": "632d44fbdc4d36347f7f9c335c8a907c",
                "sha256": "a5b52fa5d108e89fdb53f04c8b1dbeeb261da73faf852c3fb983464f47ee53b2"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "632d44fbdc4d36347f7f9c335c8a907c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 885274,
            "upload_time": "2024-10-06T17:06:46",
            "upload_time_iso_8601": "2024-10-06T17:06:46.310024Z",
            "url": "https://files.pythonhosted.org/packages/67/c8/b7b6713b6c57154a760b6d65633d09f76a12e7bff887e977a1bb9a804905/git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdb5bb5c9d0621868491ce1be655386f1701ad2f7fc2171c8c2bc2df2ad35782",
                "md5": "9e021014802e23be917aaec6ea0d991d",
                "sha256": "ac9128a772e4ddee750bb575a5a9df853a0f3830ca3c2e9e44a8a6c7bb85e734"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9e021014802e23be917aaec6ea0d991d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 950026,
            "upload_time": "2024-10-06T17:06:57",
            "upload_time_iso_8601": "2024-10-06T17:06:57.650792Z",
            "url": "https://files.pythonhosted.org/packages/fd/b5/bb5c9d0621868491ce1be655386f1701ad2f7fc2171c8c2bc2df2ad35782/git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3563579a2301e16b0e5ff0b4b3e0e3c4b1270d0d35a2c51d1714f7e74b618a5e",
                "md5": "0ed1fa863d5a0f7f52de3a07dc4835a0",
                "sha256": "2bbffa88a780a34738614cf9c7f927345339b1c8a52026ba9a334aee8b4eebc4"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ed1fa863d5a0f7f52de3a07dc4835a0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 949177,
            "upload_time": "2024-10-06T17:07:08",
            "upload_time_iso_8601": "2024-10-06T17:07:08.536749Z",
            "url": "https://files.pythonhosted.org/packages/35/63/579a2301e16b0e5ff0b4b3e0e3c4b1270d0d35a2c51d1714f7e74b618a5e/git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfb7162c01922e9bb3086f4351bdbca3fb45ba603b3ed697949238dea975d7ac",
                "md5": "0628ecbadfb764f674585eceb7b82741",
                "sha256": "e0f0d87af1dbed21c6a4d39dcbbdf58541c1bec2cff013ca7d154cc83e06eaaa"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0628ecbadfb764f674585eceb7b82741",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 917798,
            "upload_time": "2024-10-06T17:05:18",
            "upload_time_iso_8601": "2024-10-06T17:05:18.445738Z",
            "url": "https://files.pythonhosted.org/packages/df/b7/162c01922e9bb3086f4351bdbca3fb45ba603b3ed697949238dea975d7ac/git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b36af09076e237c298f9ebef67dc90cc7597fff49e03ab2ae06d4a47e9b472c",
                "md5": "e3bb7236b2617852f2de064a376b1bf1",
                "sha256": "9656231072de5712d2dff5b553c970ccce26ee8561ce143d075429288204eaf0"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e3bb7236b2617852f2de064a376b1bf1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 890521,
            "upload_time": "2024-10-06T17:05:32",
            "upload_time_iso_8601": "2024-10-06T17:05:32.682756Z",
            "url": "https://files.pythonhosted.org/packages/1b/36/af09076e237c298f9ebef67dc90cc7597fff49e03ab2ae06d4a47e9b472c/git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d9751c42d6f4ec8ead10a601415d2fc45606b5e8d2354530d67913ece21b625",
                "md5": "5b0faec28b44ee4aa96ab00cc02a6fec",
                "sha256": "91165213b873387c25c1ee6ec17e3d0a6f1a560650090b87ac27be635e8c0cb8"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5b0faec28b44ee4aa96ab00cc02a6fec",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 975290,
            "upload_time": "2024-10-06T17:06:09",
            "upload_time_iso_8601": "2024-10-06T17:06:09.253887Z",
            "url": "https://files.pythonhosted.org/packages/3d/97/51c42d6f4ec8ead10a601415d2fc45606b5e8d2354530d67913ece21b625/git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b4aab0200719ac8f5822cfa0a28513c4da098f2f3957c96ac9591c86aa8825b",
                "md5": "1d83e555cf7a08b0a309dba63e984e09",
                "sha256": "5799a6e858879338bf5b10f870ed21c2ea85609f24e0e35bca82ecf7a70fbd92"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1d83e555cf7a08b0a309dba63e984e09",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1005743,
            "upload_time": "2024-10-06T17:05:44",
            "upload_time_iso_8601": "2024-10-06T17:05:44.864884Z",
            "url": "https://files.pythonhosted.org/packages/1b/4a/ab0200719ac8f5822cfa0a28513c4da098f2f3957c96ac9591c86aa8825b/git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4737b9602e14757cfaeb4eb5cdffc801b475e55ced0f6913c5814a5c92763ae",
                "md5": "c846b367aca9cf1a1aba8de65e4e0510",
                "sha256": "61aec1d123dd17c6da3f199020d780e23b2b9de1941519d42d6040d25dbb6aa5"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c846b367aca9cf1a1aba8de65e4e0510",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1058151,
            "upload_time": "2024-10-06T17:05:55",
            "upload_time_iso_8601": "2024-10-06T17:05:55.520701Z",
            "url": "https://files.pythonhosted.org/packages/f4/73/7b9602e14757cfaeb4eb5cdffc801b475e55ced0f6913c5814a5c92763ae/git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3dc72843da329f6d83662d29deaebe349e107899fe407f4dca5ff32e91502cad",
                "md5": "4f05f06e710bbbc04b53953d7144e0fd",
                "sha256": "3b20ff7b1fe2ca21a15a07986e16314b7a1eeb93eb55b1c77fe962b7ec76f860"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f05f06e710bbbc04b53953d7144e0fd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 918274,
            "upload_time": "2024-10-06T17:06:17",
            "upload_time_iso_8601": "2024-10-06T17:06:17.849184Z",
            "url": "https://files.pythonhosted.org/packages/3d/c7/2843da329f6d83662d29deaebe349e107899fe407f4dca5ff32e91502cad/git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "659b0789b5160bd7cb542967b231f49a1a340496297a4883b10732ae95fe7a89",
                "md5": "76255afd414d223cbaad5e2de44ad7c8",
                "sha256": "3cc6159247f980f9cc83fd3e0330f541b364c83903822543a9da809f02e413ac"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "76255afd414d223cbaad5e2de44ad7c8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 927076,
            "upload_time": "2024-10-06T17:06:37",
            "upload_time_iso_8601": "2024-10-06T17:06:37.694102Z",
            "url": "https://files.pythonhosted.org/packages/65/9b/0789b5160bd7cb542967b231f49a1a340496297a4883b10732ae95fe7a89/git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac803c64e7a39271758f5873dab541173cef491ff2fd7286a983aaebd3851a25",
                "md5": "800d72cddd39c03ebee33f89036977dc",
                "sha256": "72ffb9fbc61f2ca37539fa194430c317d1f09a1f0bd7613e5640644c4b7de61a"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "800d72cddd39c03ebee33f89036977dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 885274,
            "upload_time": "2024-10-06T17:06:47",
            "upload_time_iso_8601": "2024-10-06T17:06:47.552569Z",
            "url": "https://files.pythonhosted.org/packages/ac/80/3c64e7a39271758f5873dab541173cef491ff2fd7286a983aaebd3851a25/git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00d6ebba673a9f000a17f79d422e819f427ae3d659cd4f676779e5829dc4b0ea",
                "md5": "d1d04384c89c6222b10e35cb148fc49f",
                "sha256": "f12b51ea13db5f5a71fd310392d9fb7ad47730557b75de7776cd1d972aa5de3c"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d1d04384c89c6222b10e35cb148fc49f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 950027,
            "upload_time": "2024-10-06T17:06:59",
            "upload_time_iso_8601": "2024-10-06T17:06:59.178904Z",
            "url": "https://files.pythonhosted.org/packages/00/d6/ebba673a9f000a17f79d422e819f427ae3d659cd4f676779e5829dc4b0ea/git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f343f02a5d6e21316a988e37bd0cf0680b1e4df4615af304d48a97e1c253cc77",
                "md5": "82871ca94b9cd0ae5e718ff0b0a53c5b",
                "sha256": "78ae906fd88ed34d4a162683fbccc509c68d1e2adde849dfe568675099c3bedf"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82871ca94b9cd0ae5e718ff0b0a53c5b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 949178,
            "upload_time": "2024-10-06T17:07:09",
            "upload_time_iso_8601": "2024-10-06T17:07:09.801853Z",
            "url": "https://files.pythonhosted.org/packages/f3/43/f02a5d6e21316a988e37bd0cf0680b1e4df4615af304d48a97e1c253cc77/git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5802a5b5d726318e4b268c64f4b856ec701466f155dd47c571e6cd990e922d0b",
                "md5": "a47bbb357d8e0f98b0f8f3dba329e801",
                "sha256": "abcb7957599f179703d1663b064bbe33311b947cdc3193698501ffa04dbe6ac6"
            },
            "downloads": -1,
            "filename": "git_codeowners-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "a47bbb357d8e0f98b0f8f3dba329e801",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 12393,
            "upload_time": "2024-10-06T17:07:11",
            "upload_time_iso_8601": "2024-10-06T17:07:11.378592Z",
            "url": "https://files.pythonhosted.org/packages/58/02/a5b5d726318e4b268c64f4b856ec701466f155dd47c571e6cd990e922d0b/git_codeowners-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-06 17:07:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "chrisittner",
    "github_project": "git-codeowners",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "maturin",
            "specs": []
        }
    ],
    "lcname": "git-codeowners"
}
        
Elapsed time: 0.31387s