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 requirements.txt to latest pypi versions #192

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Merge branch 'master' into bump-requirements

fdf5c3c
Select commit
Loading
Failed to load commit list.
Open

Bump requirements.txt to latest pypi versions #192

Merge branch 'master' into bump-requirements
fdf5c3c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Oct 24, 2024 in 27s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #192 Bump requirements.txt to latest pypi versions.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Python OS State
853.1 3.6 Linux errored
853.2 3.7 Linux errored
853.3 3.8 Linux errored

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Bionic)
Python Versions 3.6, 3.7, 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "python": [
    "3.6",
    "3.7",
    "3.8"
  ],
  "install": [
    "pip install -U setuptools \"importlib-metadata==4.8.3\"",
    "pip install -r requirements.txt -e .[test]"
  ],
  "script": [
    "python --version",
    "pytest --version",
    "pre-commit run --all-files",
    "pytest --cov --cov-config=.coveragerc"
  ],
  "after_script": [
    "python -m codecov"
  ],
  "deploy": [
    {
      "provider": "pypi",
      "password": "$PYPI_PASSWORD",
      "distributions": "sdist bdist_wheel",
      "on": {
        "python": "3.8",
        "tags": true
      },
      "username": "__token__"
    }
  ]
}