Skip to main content

Codecov Command Line Interface

Project description

CodecovCLI

codecov Build-Test-Upload

CodecovCLI is a new way for users to interact with Codecov directly from the user’s terminal or CI platform. Many Codecov features that require the user’s interference can be done via the codecovCLI. It saves commits, creates reports, uploads coverage and has many more features.

Installing

Using PIP

To use codecov-cli in your local machine, or your CI workflows, you need to install it:

pip install codecov-cli

The above command will download the latest version of Codecov-cli. If you wish to use a specific version, releases can be viewed here.

Note: If you're installing in a pyenv environment, you may need to call pyenv rehash before the CLI will work.

As a Binary

If you would like to use the CLI in an environment that does not have access to Python / PIP, you can install the CLI as a compiled binary. Linux and macOS releases can be found here, along with SHASUMs and signatures for each released version. Binary releases are also available via Github releases on this repository.

You can retrieve the Binary for Linux directly from your command line as follows:

curl -Os https://cli.codecov.io/latest/linux/codecov
sudo chmod +x codecov
./codecov --help

Integrity Checking the Binary

The binary can be integrity checked using a SHASUM256 and SHASUM256.sig file. The process for macos and Linux is identical. Linux is as follows:

curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step
curl -Os https://cli.codecov.io/latest/linux/codecov
curl -Os https://cli.codecov.io/latest/linux/codecov.SHA256SUM
curl -Os https://cli.codecov.io/latest/linux/codecov.SHA256SUM.sig

gpgv codecov.SHA256SUM.sig codecov.SHA256SUM

shasum -a 256 -c codecov.SHA256SUM

For macos you will want to use the macos distributions of the binary (e.g., https://cli.codecov.io/latest/macos/codecov)

How to Upload to Codecov

If desired, the CLI can be used as a replacement for our NodeJS Binary Uploader. To use the CLI to upload from your CI workflow, you need to add these commands:

pip install codecov-cli
codecovcli create-commit
codecovcli create-report
codecovcli do-upload

OR

pip install codecov-cli
codecovcli upload-process

codecovcli upload-process is a wrapper for create-commit, create-report and do-upload.

You can customize the commands with the options aligned with each command.

Note that these commands will automatically search your environment for a $CODECOV_TOKEN environment variable and use it if found. If you do not have a repository upload token, or global upload token, stored as an environment variable, you will need to pass it into each command manually, like so: -t {$CODECOV_TOKEN}.

How to Get an Upload Token

The following tokens are suitable for uploading:

  • The Repository Upload Token: Found on the settings page of your repository, also viewable on the /new page when setting up a repository on Codecov for the first time.
  • The Global Upload Token: Found on your organization settings page (e.g., https://app.codecov.io/account/<scm>/<org>/org-upload-token).

Usage

If the installation is successful, running codecovcli --help will output the available commands along with the different general options that can be used with them.

[!IMPORTANT] For up-to-date command usage, please check the codecovcli_commands file

Usage: codecovcli [OPTIONS] COMMAND [ARGS]...

Codecov-cli supports user input. These inputs, along with their descriptions and usage contexts, are listed in the table below:

Input Description Usage
--auto-load-params-from The CI/CD platform Optional
--codecov-yml-path The path for your codecov.yml Optional
--enterprise-url Change the upload host (Enterprise use) Optional
--version Codecov-cli's version Optional
--verbose or -v Run the cli with verbose logging Optional

Codecov-cli Commands

Command Description
create-commit Saves the commit's metadata in codecov, it's only necessary to run this once per commit
create-report Creates an empty report in codecov with initial data e.g. report name, report's commit
do-upload Searches for and uploads coverage data to codecov
create-report-results Used for local upload. It tells codecov that you finished local uploading and want it to calculate the results for you to get them locally.
get-report-results Used for local upload. It asks codecov to provide you the report results you calculated with the previous command.
pr-base-picking Tells codecov that you want to explicitly define a base for your PR
upload-process A wrapper for 3 commands. Create-commit, create-report and do-upload. You can use this command to upload to codecov instead of using the previously mentioned commands.
send-notifications A command that tells Codecov that you finished uploading and you want to be sent notifications. To disable automatically sent notifications please consider adding manual_trigger to your codecov.yml, so it will look like codecov: notify: manual_trigger: true.

Note: Every command has its own different options that will be mentioned later in this doc. Codecov will try to load these options from your CI environment variables, if not, it will try to load them from git, if not found, you may need to add them manually.

create-commit

codecovcli create-commit [Options]

Option Description Usage
-C, --sha, --commit-sha Commit SHA (with 40 chars) Required
--parent-sha SHA (with 40 chars) of what should be the parent of this commit Optional
-P, --pr, --pull-request-number Specify the pull request number manually. Used to override pre-existing CI environment variables Optional
-B, --branch Branch to which this commit belongs to Optional
-r, --slug owner/repo slug used instead of the private repo token in Self-hosted Required
-t, --token Codecov upload token Required
--git-service Git Provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Required
-h, --help Shows usage, and command options

create-report

codecovcli create-report [OPTIONS]

Option Description Usage
-C, --sha, --commit-sha Commit SHA (with 40 chars) Required
-r, --slug owner/repo slug used instead of the private repo token in Self-hosted Required
-t, --token Codecov upload token Required
--git-service Git Provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Required
--code The code of the report. This is used in local uploading to isolate local reports from regular or cloud reports uploaded to codecov so they don't get merged. It's basically a name you give to your report e.g. local-report. Optional
-h, --help Shows usage, and command options

do-upload

codecovcli do-upload [OPTIONS]

Option Description Usage
-C, --sha, --commit-sha Commit SHA (with 40 chars) Required
--report-code The code of the report defined when creating the report. If unsure, leave default Optional
--network-root-folder Root folder from which to consider paths on the network section default: (Current working directory) Optional
-s, --dir, --coverage-files-search-root-folder Folder where to search for coverage files default: (Current Working Directory) Optional
--exclude, --coverage-files-search-exclude-folder Folders to exclude from search Optional
-f, --file, --coverage-files-search-direct-file Explicit files to upload Optional
--recurse-submodules Whether to enumerate files inside of submodules for path-fixing purposes. Off by default. Optional
--disable-search Disable search for coverage files. This is helpful when specifying what files you want to upload with the --file option. Optional
-b, --build, --build-code Specify the build number manually Optional
--build-url The URL of the build where this is running Optional
--job-code The job code for the CI run Optional
-t, --token Codecov upload token Required
-n, --name Custom defined name of the upload. Visible in Codecov UI Optional
-B, --branch Branch to which this commit belongs to Optional
-r, --slug owner/repo slug Required
-P, --pr, --pull-request-number Specify the pull request number manually. Used to override pre-existing CI environment variables Optional
-e, --env, --env-var Specify environment variables to be included with this build. Optional
-F, --flag Flag the upload to group coverage metrics. Multiple flags allowed. Optional
--plugin plugins to run. Options: xcode, gcov, pycoverage. The default behavior runs them all. Optional
-Z, --fail-on-error Exit with non-zero code in case of error uploading. Optional
-d, --dry-run Don't upload files to Codecov Optional
--legacy, --use-legacy-uploader Use the legacy upload endpoint Optional
--git-service Git Provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Required
-h, --help Shows usage, and command options

create-report-results

codecovcli create-report-results [OPTIONS]

Option Description Usage
--commit-sha Commit SHA (with 40 chars) Required
--code The code of the report. If unsure, leave default Required
--slug owner/repo slug Required
--git-service Git provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Optional
-t, --token Codecov upload token Required
-h, --help Shows usage, and command options

get-report-results

codecovcli get-report-results [OPTIONS]

Option Description Usage
--commit-sha Commit SHA (with 40 chars) Required
--code The code of the report. If unsure, leave default Required
--slug owner/repo slug Required
--git-service Git provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Optional
-t, --token Codecov upload token Required
-h, --help Shows usage, and command options

pr-base-picking

codecovcli pr-base-picking [OPTIONS]

Option Description Usage
--base-sha Base commit SHA (with 40 chars) Required
--pr Pull Request id to associate commit with Required
--slug owner/repo slug Required
-t, --token Codecov upload token Required
--service Git provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Optional
-h, --help Shows usage, and command options

send-notifications

codecovcli send-notifications [OPTIONS]

Option Description Usage
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) Required
-r, --slug TEXT owner/repo slug used instead of the private repo token in Self-hosted Required
-t, --token TEXT Codecov upload token Required
--git-service Git provider. Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Optional
-h,--help Show this message and exit.

empty-upload

Used if the changes made don't need testing, but PRs require a passing codecov status to be merged. This command will scan the files in the commit and send passing status checks configured if all the changed files are ignored by codecov (including README and configuration files)

Usage: codecovcli empty-upload [OPTIONS]

Options Description usage
-C, --sha, --commit-sha TEXT Commit SHA (with 40 chars) Required
-t, --token TEXT Codecov upload token Required
-r, --slug TEXT owner/repo slug used instead of the private repo token in Self-hosted Optional
--force Always emit passing checks regardless of changed files Optional
-Z, --fail-on-error Exit with non-zero code in case of error Optional
--git-service Options: github, gitlab, bitbucket, github_enterprise, gitlab_enterprise, bitbucket_server Optional
-h, --help Show this message and exit. Optional

How to Use Local Upload

The CLI also supports "dry run" local uploading. This is useful if you prefer to see Codecov status checks and coverage reporting locally, in your terminal, as opposed to opening a PR and waiting for your full CI to run. Local uploads do not interfere with regular uploads made from your CI for any given commit / Pull Request.

Local Upload is accomplished as follows:

pip install codecov-cli
codecovcli create-commit
codecovcli create-report --code <CODE>
codecovcli do-upload --report-code <CODE>
codecovcli create-report-results --code <CODE>
codecovcli get-report-results --code <CODE>

Codecov will calculate the coverage results, and return them in your terminal, telling you whether your PR will fail or pass the coverage check.

Note: In order for Local Upload to work, it must be used against a commit on the origin repository. Local Upload does not work for arbitrary diffs or uncommitted changes on your local machine.

Work in Progress Features

The following features are somewhat implemented in code, but are not yet meant for use. These features will be documented once they are fully implemented in the CLI.

Plugin System

To provide extensibility to some of its commands, the CLI makes use of a plugin system. For most cases, the default commands are sufficient. But in some cases, having some custom logic specific to your use case can be beneficial. Note that full documentation of the plugin system is pending, as the feature is still heavily a work in progress.

Static Analysis

The CLI can perform basic static analysis on Python code today. This static analysis is meant to power more future looking Codecov features and, as such, is not required or in active use today. As more functionality dependent on static analysis becomes available for use, we will document static analysis in detail here.

Contributions

This repository, like all of Codecov's repositories, strives to follow our general Contributing guidelines. If you're considering making a contribution to this repository, we encourage review of our Contributing guidelines first.

Requirements

Most of this package is a very conventional Python package. The main difference is the static the CLI's analysis module uses both git submodules and C code

Before installing, one should pull the submodules with:

git submodule update --init

Then, install dependencies with

pip install -r requirements.txt
python -m pip install --editable .

The C code shouldn't require any additional setup to get running, but depending on your environment, you may be prompted to install compilers and supporting tools. If errors are generated during installation, it is likely due to missing dependencies / tools required of the C code. In many cases, resulting error messages should be clear enough to determine what is missing and how to install it, but common errors will be collected here as they are encountered.

Guidelines

There are a few guidelines when developing in this system. Some notable folders:

  1. commands - It's the folder that interacts with the caller. This is where the commands themselves should reside. These commands are not meant to do heavy lifting. They only do wiring, which is mostly parsing the input parameters.
  2. services - It's where the heavy logic resides. It's mostly organized by which command needs them. Commands should generally be thin wrappers around these services.
  3. helpers - This is meant for logic that is useful across different commands. For example, logging helpers, or the logic that searches folders.

Dependencies

If external dependencies need to be added, it's important to check whether those dependencies have wheels available on PyPI with the any or universal2 platform tags. If those dependencies don't have those wheels available, then they will need to built during the CI, so they will have to be added to the list of dependencies in the --no-binary flag when building the requirements for the macos release in build_assets.yml.

Releases

The standard way to making a new release is the following:

  1. Open a PR that increases the version number in pyproject.toml. As a rule of thumb, just add one to the micro/patch version (e.g., v0.1.6 -> v0.1.7).

  2. Get the up-to-date master branch locally and run the tag.release command from the Makefile.

$ make tag.release version=v<VERSION_NUM>

The version tag must match the regex defined on the Makefile (tag_regex := ^v([0-9]{1,}\.){2}[0-9]{1,}([-_]\w+)?$).

Note:
Releases with test word in them are created as draft.
Releases with beta word in them are created as pre-release.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

codecov_cli-10.4.0.tar.gz (352.6 kB view details)

Uploaded Source

Built Distributions

codecov_cli-10.4.0-cp312-cp312-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

codecov_cli-10.4.0-cp312-cp312-win32.whl (210.5 kB view details)

Uploaded CPython 3.12 Windows x86

codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

codecov_cli-10.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (309.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

codecov_cli-10.4.0-cp312-cp312-macosx_11_0_arm64.whl (220.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

codecov_cli-10.4.0-cp312-cp312-macosx_10_13_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

codecov_cli-10.4.0-cp311-cp311-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

codecov_cli-10.4.0-cp311-cp311-win32.whl (210.5 kB view details)

Uploaded CPython 3.11 Windows x86

codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

codecov_cli-10.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (309.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

codecov_cli-10.4.0-cp311-cp311-macosx_11_0_arm64.whl (220.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

codecov_cli-10.4.0-cp311-cp311-macosx_10_9_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

codecov_cli-10.4.0-cp310-cp310-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

codecov_cli-10.4.0-cp310-cp310-win32.whl (210.5 kB view details)

Uploaded CPython 3.10 Windows x86

codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

codecov_cli-10.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (309.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

codecov_cli-10.4.0-cp310-cp310-macosx_11_0_arm64.whl (220.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

codecov_cli-10.4.0-cp310-cp310-macosx_10_9_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

codecov_cli-10.4.0-cp39-cp39-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

codecov_cli-10.4.0-cp39-cp39-win32.whl (210.5 kB view details)

Uploaded CPython 3.9 Windows x86

codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

codecov_cli-10.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (309.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

codecov_cli-10.4.0-cp39-cp39-macosx_11_0_arm64.whl (220.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

codecov_cli-10.4.0-cp39-cp39-macosx_10_9_x86_64.whl (216.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file codecov_cli-10.4.0.tar.gz.

File metadata

  • Download URL: codecov_cli-10.4.0.tar.gz
  • Upload date:
  • Size: 352.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for codecov_cli-10.4.0.tar.gz
Algorithm Hash digest
SHA256 714618fc7797fb1e369e3c9e23125d323ff0bc4d1bf8cdeace5d8c7562398c4a
MD5 0b696ab69b14943cfd4e980d5ceb8846
BLAKE2b-256 64e3d5e09f0431304bc495dd84b1f846c801d08639bc3a8e8c3544d4c8348c52

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0.tar.gz:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c00e9f54c9b88060ac2edeea271efb1413d2b3d39b0a2368dfeb2d62ca98afa9
MD5 1b9a87d8924fefb8d784ea2fed58d693
BLAKE2b-256 7625162d1a595822b198b4f7de2c7d232a861f1ce67b170aee04aa5be5205b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-win_amd64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c580a023367c75074818893e8fcd2346cc96adbe6f207dca1e55c86e0c7ba245
MD5 23e72c5b0db0b938fb8286a081670670
BLAKE2b-256 9926008f7b14ca7f3295539a1a767c9d6aaef54df1f1b89faaeebacaf0134f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-win32.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 116eb8579d3ddb14164f19dd19f49c82aa51af5383b902c1fa803a16640f1b3c
MD5 198e9a153031fe1ceb72e3a197a2dc14
BLAKE2b-256 988f47f656b6d166c212c33494a36e96ce66c866ef43ca3ed862c329a0c91363

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd53e443c69d55b202581baa577ca82f710131b96875a769ec0b194530e4369d
MD5 27f7c3d175113ae27110d22f27ba1f35
BLAKE2b-256 bf8c098b321b6d03615f3cc08cd2413329cf10ddabf649c617f5f1a21e9ed1ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46e79cbf6177eb1a596cec823517185f84893127525ffc1c5bb6229a919b4aa3
MD5 2ef0a0e676f67936553a1e8600547866
BLAKE2b-256 f597dd5194824ba52f2b5b27d54530f3f2cf697cd2655d074f916762282c013f

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2355fd978944136c96454fd4a89a4cdc8b5949d71f9aec6fa9d47c7cb34f885
MD5 775c70c098110a749f9e16eeaf2452a9
BLAKE2b-256 73218bbef2386c2bbcbc29bb074a20c340fe2fb8c6a44fbc5fe530f78d5a8182

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c579a307bc0d0b8d7957e706b06a3addd4819888ece882bf14919f9a56bf5be2
MD5 0c90ba78d7a0802b6752918d68488140
BLAKE2b-256 02da7a1241b18ef86c4a5d45ae5a26e018592fef4604c04f5f693ad15c33a859

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef24f2dc3cb7b7ff814c9d9708228597acda0b68f9c9c34646f17dd98993eca5
MD5 2fd18f3f53d668d6f8e07481943e866f
BLAKE2b-256 ac8f696d2640ff78de47fbe1c9e65ee1b840bd3f137877081c1d3322500d6e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86827063fcfb516e0578f38132fe29c7212c43633ecc2044a6bf042e70de7e13
MD5 5e7e81231f1a9e3c8f8d6b5b2024ab8d
BLAKE2b-256 3e53d1b522d32916c1f966d4a9cda8e94ba3d350e5fc6a8223e25848382f78c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bcd7130cc66272f0205ea5343cd0c89d98c6956c55124687f44755ae3db8b4e4
MD5 8752c1f226f7c47aa8775034b09bde9d
BLAKE2b-256 97b6959be6eb0634d0480f7e595f0b2bddc89ef485cb49cfa53666804b603be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 adb420e9158cc90dc06ce6e675846a73270e7b2fceb7abb135c0a9d529d120fd
MD5 9a104ccfbc6dbbc1eb776c491daea65a
BLAKE2b-256 01113b081908474134f0e6a35ae7e00bd19f5ad4ab8396681ed80d54e4183f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-win_amd64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 30a06c102c9cba68694faa1688c55f7fb94245eaebd132fe168baf466825b4ce
MD5 e2c06befa4e327903bfda06b8f6c7103
BLAKE2b-256 41476f0b4dd466c0d084a43a4c200863f42612a2e93a7d539617ae6b3cb4af20

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-win32.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d6fe61b9e2478b776cd6d0c9dced5479ddeb262ae529ca488c33b14d50ee090
MD5 548ecd4824e27bda02987ddfa58380a9
BLAKE2b-256 e3692d1e9fc62622f8436ed9b192dfcb213894b6733ec9a9db294dddf42bd8fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ca599cbb62fb9e13c0dc9abec88a80bfac2d0cd58f0fce51ed8dae23a7edfda
MD5 10a443c5daacfe7fb27107bda19e48e9
BLAKE2b-256 a0ddb3ce1be10b0deacd33f556b87d668cfa00444a0494a369d3ddb243fc894b

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dd0f5a9d969a4c78cb1c93ecd3fc7c20c0e52aa504b7847a8b68cab5a55cd5d
MD5 6a1c3336318e1d870efa44d9292303e6
BLAKE2b-256 bf1ad1c66330db7960b7c9e53d6670a748dd367c7d1042afd9d626255a74bbff

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27eb6e73e13ade382b7a6951ef1696750492eb2b8586144aa41c331c7842f4e2
MD5 4d3f78850fdc3525a80b3e27848c2107
BLAKE2b-256 40805aa8d217cea21f9acae0383996c99efc4046e8caad33a08a43aab6930874

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a73609ad9c7a8abd8cff1927acc9f6ccde15eac027c154c9cc12d06ad0d440d
MD5 6de27dc28372ca698ca80fb4bf91ab50
BLAKE2b-256 6cc46128be7fa9914a43b2fd34e8030831c8dada05a39c0a18ddaae20964465a

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22ef03b8dd480e8f2869bfc7d3b640e2238074cfbdb9700818fa565b9d54ef53
MD5 e79305da7ca65688087f4be2d47e333a
BLAKE2b-256 3a2bbb0566d57938cc255b608ed74b7d61d30cb4631d55a31ea11dda36a23d4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab2beb1bb145fc433587bb7e2a29698b5f612184b8166d6d9f8131f13884bfe0
MD5 115aa0c63622b444ee736ee13745ca9a
BLAKE2b-256 2c2bafbe120feaeb34efa12345e64c976c2da3ae5fb80d356f78610483e03572

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 005cfd67a77ce5c06704cdfaeb74c10d79a2019d451b7684beb65a97f416194c
MD5 7c4c409c5c9523a2eddf4bf113054605
BLAKE2b-256 e43ee66dd9a2fb29fce50b233ec32e640c2387cd906609ae943ac2c82c9368f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24cbb3553083b4e96d9e740c6bfaed89d99f8adfd67b3fb27a17b2ad9381d97e
MD5 93add7cd9c454b7b20773fa37aacdda1
BLAKE2b-256 7e118bf6d9505ecd79e67507778d31f5785143c2832e55d7c15bd5cc94dc62fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-win_amd64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0f63ed6ad8759e91ef1e7992bf5c072ef85b5989237cb5b73b29598709f77c45
MD5 d4c10f9a9f681e52607ab3642985aa81
BLAKE2b-256 3c6d8f4e73fdf2f1dae6a9823dc5e5cbf853fec708094e10e6f2ae788dd56a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-win32.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6dac1602ecbb0e558bd8be3c8ca901efc684ef729c8ab4cc71f7ed08efd5e8d
MD5 3475a0169048e778857eb4b6f5677a89
BLAKE2b-256 7d4e2c01d9489ebc201f8fcd13ff66334638aa880808ecf8ef0b5d2a3d7db57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 941b10cf5334ed3d5f5377e1096067d81a2cb1eac7a62525d27cb49994590341
MD5 7197d9716bf187e4de82aa04c6eed12c
BLAKE2b-256 653976d1ef696d9a2784075dee19c134a3de4c1ac200946930dc0df73a3086e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 859ab5ae5314c1f8fd754a439d7e1c812cc1c3f2a2c6ec0edefb34280e1377c3
MD5 157a7b5fa9be37b4ae45aec8181a7d3a
BLAKE2b-256 53918bd40e077db6dcce9ee8fc2339c158850ab3d9016d45371fd565a002274d

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 004b9fa45fb9b6a2aa853d2872811acde5a1d7bb77564144cce37210793d8840
MD5 082027f3c328683736bed082a77d2e61
BLAKE2b-256 9f59fb15cf6cc5eeef71e788cbb021baa7a4181743914fbb0b074234a5388bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6d600b0efcf872d58fdccd8b35d367983ff823e6ea8a49ac729ae0331df2b6e
MD5 3ec71758856dbce8402540e86ec32fea
BLAKE2b-256 8a3857c629f06071f40c16ca781ebce12b165d5feaf3d5492e6307b7c6924eb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 081ae83d2adf3538dd8b5e09d2bb253d5f5e7fe87cc7e014c75778ae6bf940ce
MD5 7006cf8656ffe3f5d602f6cbf19f3dca
BLAKE2b-256 37e520674cd34ae321da9063257bb865e55cdad43a1b5c59666e7974cae9ba3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e0ea94690255025706c5ce4c56cb645774df23c09d768fd6f216200334ce3da
MD5 2818e819f6132d413e67ceef86dc4d7c
BLAKE2b-256 a6ae4cf3ef7b7183b21adcb776741ce66eb3b946a0fb7264b4c0af74f5231ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fa2e128aa1aa5c062fe21e31527a46b745ba1632a067fe7bd1284a33a57b60e
MD5 00aef804469c8f1ede1cd2e03ec84e15
BLAKE2b-256 f7b0d6a2b73c71055ab3340103e474fa7ec25ac1fe995d3cec51695b2f0ecc36

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa9a623c6e381e064d527b194819774325b9d0c400d2898f6b8f1a7216d81be0
MD5 98e91a6894927a65687fa8ad833f2b7c
BLAKE2b-256 b66c9ade1c1cd4d44d6f1fe86ce56b0243c4c6bd6ac5b512a71bd6107bec442f

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-win_amd64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: codecov_cli-10.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 210.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 508098e5a7ef3b391f07a3c2794bc9d605bcd092cb664464572965e02e1ea920
MD5 108a16f827128c1916de1b6eead4e344
BLAKE2b-256 9d346471365b7a6389db758891c299c650c391b2736caefc3929832df532af68

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-win32.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28259ae558fab7f1c4e380597a4f873f377b7c5afcea72e39be3e97092ae6315
MD5 8efe1da426c540c79b3098ec233bd832
BLAKE2b-256 e32bc761a7df1e4097b4f77422192eb0557f1cc9cd9bf3e4b1aade4d3ca39587

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a00e9127799570f2a729846d42a336901480a8a43e13030ec6599e5f7ef9b47
MD5 9826400b6606548cfda234d771535fba
BLAKE2b-256 35cb5cda927d53525414cf94ef55ff442c538664cb5ff0c8e896130dd49704bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18a91d391c383da593957b8b26a90b6b31c3ef8516f3f4f9088df23cd483de67
MD5 29988a381eb670fe5d7e7203e842e80a
BLAKE2b-256 95ff4b7ffe4b4fa5f9255d41ef1a5ac7a8f2d6634ca2a4957e4f82427657db91

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48c271d0c2bc1a4640afc023697ecddf763e7d503f8c4ebc42fed86987aa8364
MD5 fee2619067ebf3a0e7cc8b2cdc82dd97
BLAKE2b-256 b349b656f91222bfe26d5d9cd183af58c877054153ab337b95dc8708f6a987d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c6b1995d304ef17443b8c9b5fc909aad30c27a4b19bcfd93816e3434f5f6941
MD5 0ca55a492b7266330c038be57b3c82a6
BLAKE2b-256 776294e9624c5b48bfeba1922bc8631b754f0514218226d31e2ba0561432afda

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fc99f864976e95d7606337a38c6ead684d0a18affda5aea2744b1f9c62346f2
MD5 589114657716f514735f0f234f20c868
BLAKE2b-256 d03599341ca106e26429a163954f484ead197eeb61ddbb0d3a9e09fa04b1862f

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99c2b9b0e0e0e633a1b8a94bd110ef0e9ce0f7f01d278448ed98d16627f2eeff
MD5 d29d2c0386a6b44616d7c9d7c1a7f225
BLAKE2b-256 23d56c2c531b469fae5d4822e34298e72e1396674cb1ea07ef978431644323f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codecov_cli-10.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for codecov_cli-10.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c7912990ddd3e3bc05fe18f3c6b6d74f1b582e0d372cf8ba03b912b039a3442
MD5 4bcfe63e65565738b4f963be411176e5
BLAKE2b-256 3681ea11b177c4813d994ea71e60fd81e51a2f6e59f5f79bea78273fcd3c2f4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for codecov_cli-10.4.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release_flow.yml on codecov/codecov-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page