Skip to content

pre-commit

c6a42f2
Select commit
Loading
Failed to load commit list.
Open

upgrade to python 3.14 #93

pre-commit
c6a42f2
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Feb 3, 2026 in 3m 54s

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 #93 upgrade to python 3.14.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Stage 1: test

This stage passed.

Job Python OS State
453.1 pytest 3.14 Linux passed
453.2 pre-commit 3.14 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Python Version 3.14
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "python": [
    "3.14"
  ],
  "jobs": {
    "include": [
      {
        "stage": "test",
        "name": "pytest",
        "install": [
          "pip install -e ."
        ],
        "script": [
          "pytest"
        ]
      },
      {
        "stage": "test",
        "name": "pre-commit",
        "install": [
          "pip install pre-commit"
        ],
        "script": [
          "pre-commit run --show-diff-on-failure --all-files"
        ]
      }
    ]
  }
}