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

fixes deprecation #177

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

fixes deprecation

8907945
Select commit
Loading
Failed to load commit list.
Open

fixes deprecation #177

fixes deprecation
8907945
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded May 29, 2023 in 6m 27s

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 #177 fixes deprecation.
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.

Job Python OS State
449.1 3.7 Linux passed
449.2 3.8 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Versions 3.7, 3.8
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "python": [
    "3.7",
    "3.8"
  ],
  "install": [
    "wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh",
    "bash miniconda.sh -b -p $HOME/miniconda",
    "source \"$HOME/miniconda/etc/profile.d/conda.sh\"",
    "hash -r",
    "conda config --set always_yes yes --set changeps1 no",
    "conda update -q conda",
    "conda info -a",
    "conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION",
    "conda activate test-environment",
    "conda install pytest pytest-cov coveralls pycodestyle cytoolz",
    "pip install .",
    "pip freeze"
  ],
  "script": [
    "pycodestyle populationsim",
    "py.test --cov populationsim --cov-report term-missing"
  ],
  "after_success": [
    "coveralls",
    "pip install sphinx numpydoc sphinx_rtd_theme==0.5.2",
    "cd docs",
    "make clean",
    "make html",
    "touch _build/html/.nojekyll"
  ],
  "deploy": [
    {
      "provider": "pages",
      "strategy": "git",
      "local_dir": "docs/_build/html",
      "skip_cleanup": true,
      "keep_history": true,
      "on": {
        "branch": [
          "master"
        ]
      },
      "token": "$GH_TOKEN_POPSIM"
    }
  ]
}