Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump tqdm from 4.66.1 to 4.66.3 #131

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Bump tqdm from 4.66.1 to 4.66.3

949a8a9
Select commit
Loading
Failed to load commit list.
Open

Bump tqdm from 4.66.1 to 4.66.3 #131

Bump tqdm from 4.66.1 to 4.66.3
949a8a9
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded May 3, 2024 in 3m 10s

Build Passed

The build passed.

Details

This is a normal build for the dependabot/pip/tqdm-4.66.3 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Version 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "python": [
    "3.8"
  ],
  "services": [
    "docker"
  ],
  "env": [
    "global={:QUAY_REPO=>\"\\\"quay.io/opentargets/platform-input-support\\\"\"}"
  ],
  "install": [
    "docker build --pull --cache-from \"${QUAY_REPO}:${TRAVIS_BRANCH}\" --tag \"${QUAY_REPO}\" ."
  ],
  "script": [
    "docker run -it --entrypoint poetry \"${QUAY_REPO}\" run python3.8 -m pytest --cov=modules --cov-report term tests/ --fulltrace"
  ],
  "after_success": [
    "codecov",
    "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then\n  echo \"--- Building and pushing Docker image ---\"\n  docker login -u=\"${QUAY_USER}\" -p=\"${QUAY_PASSWORD}\" quay.io\n  git_sha=\"${TRAVIS_COMMIT}\"\n  docker tag \"${QUAY_REPO}\" \"${QUAY_REPO}:${TRAVIS_BRANCH}\"\n  docker tag \"${QUAY_REPO}\" \"${QUAY_REPO}:${git_sha}-${TRAVIS_BRANCH}\"\n  docker push \"${QUAY_REPO}:${TRAVIS_BRANCH}\" && docker push \"${QUAY_REPO}:${git_sha}-${TRAVIS_BRANCH}\"\n  if [ \"${TRAVIS_TAG}\" != \"\" ]; then\n    echo \"Pushing tagged released container ${TRAVIS_TAG}\"\n    docker tag \"${QUAY_REPO}:${TRAVIS_BRANCH}\" \"${QUAY_REPO}:${TRAVIS_TAG}\"\n    docker push \"${QUAY_REPO}:${TRAVIS_TAG}\"\n  fi\n  if [ \"${TRAVIS_BRANCH}\" = \"master\" ]; then\n    echo \"This is the Master branch, pushing as latest\"\n    docker tag \"${QUAY_REPO}:${TRAVIS_BRANCH}\" \"${QUAY_REPO}:latest\"\n    docker push \"${QUAY_REPO}:latest\"\n  fi\nfi"
  ]
}