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

Compatibility with latest MPL 3.8 (Dev) #433

Closed
wants to merge 6 commits into from

Update proplot/colors.py

c0fe4c6
Select commit
Loading
Failed to load commit list.
Closed

Compatibility with latest MPL 3.8 (Dev) #433

Update proplot/colors.py
c0fe4c6
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Aug 11, 2023 in 14m 45s

Build Failed

The build failed. 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 #433 colormap fix mpl v3.8.
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 (Focal)
Python Version 3.7
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": false,
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "python": [
    "3.7"
  ],
  "before_install": [
    "MODIFIED_FILES=$(git diff --name-only \"$TRAVIS_COMMIT_RANGE\" 2>/dev/null)\nif [ $? -eq 0 ] && ! echo \"$MODIFIED_FILES\" | grep -qvE '(.md)|(.rst)|(.html)|(.png)|(.ico)'\n  then\n  echo \"Only doc files were updated, not running the CI.\"\n  exit\nfi\n",
    "wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh",
    "bash miniconda.sh -b -p $HOME/miniconda",
    "export PATH=\"$HOME/miniconda/bin:$PATH\"",
    "hash -r",
    "conda config --set always_yes yes --set changeps1 no --set show_channel_urls true",
    "conda update -q conda",
    "conda info -a"
  ],
  "install": [
    "conda env create --file ci/environment.yml",
    "source activate proplot-dev",
    "conda list",
    "which conda",
    "which python",
    "python setup.py sdist bdist_wheel",
    "pip install --user ./dist/*.whl"
  ],
  "script": [
    "ci/run-linter.sh",
    "pushd docs",
    "make html",
    "popd"
  ]
}