Skip to content

Bump urllib3 from 1.26.6 to 2.6.3 - #399

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/urllib3-2.6.3
Open

Bump urllib3 from 1.26.6 to 2.6.3#399
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/urllib3-2.6.3

Bump urllib3 from 1.26.6 to 2.6.3

b6616a5
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jan 8, 2026 in 2m 18s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #399 Bump urllib3 from 1.26.6 to 2.6.3.
Any changes that have been made to the master branch before the build ran are also included.

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 (Jammy)
Python Version 3.9
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": true,
  "services": [
    "postgresql"
  ],
  "addons": {
    "postgresql": "14",
    "apt": {
      "packages": [
        "postgresql-14",
        "postgresql-client-14"
      ]
    }
  },
  "python": [
    "3.9"
  ],
  "before_install": [
    "sudo apt-get update",
    "sudo service postgresql restart 14"
  ],
  "install": [
    "psql -p 5432 -c 'create database travis_ci_test;' -U postgres",
    "pip install -r requirements.txt",
    "pip install -r requirements-toil.txt",
    "source travis_env.sh",
    "python manage.py migrate"
  ],
  "script": [
    "source travis_env.sh",
    "coverage run --source='.' manage.py test",
    "coverage report -m --fail-under=75",
    "flake8",
    "black --check ."
  ]
}