This repository was archived by the owner on Apr 30, 2025. It is now read-only.
Changed deprecated reference to scikit-learn in setup.py #137
+1
−1
Travis CI / Travis CI - Pull Request
required action
Feb 26, 2025 in 12m 18s
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 #137 Changed deprecated reference to scikit-learn in setup.py.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has four jobs, running in parallel.
| Job | Python | OS | State |
|---|---|---|---|
| 3.7 | Linux | errored | |
| 3.8 | Linux | errored | |
| 3.7 | Linux | failed | |
| 3.7 | Linux | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Python |
| Operating System | Linux (Bionic) |
| Python Versions | 3.7, 3.8 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "bionic",
"python": [
"3.7",
"3.8"
],
"before_install": [
"pip install cython",
"sudo apt-get -y install pocl-opencl-icd clinfo"
],
"install": [
"pip install -e ."
],
"before_script": [
"pip install pytest pytest-cov codecov",
"clinfo",
"python .travis/context_info.py"
],
"script": [
"pytest -v --cov-config=.coveragerc --cov=./peridynamics"
],
"after_success": [
"codecov"
],
"jobs": {
"include": [
{
"name": "Lint",
"before_install": [
],
"install": [
],
"before_script": [
"pip install flake8 flake8-docstrings"
],
"script": [
"flake8"
],
"after_success": [
]
},
{
"name": "Build documentation",
"before_script": [
"pip install sphinx"
],
"script": [
"sphinx-build -W -b html docs build"
],
"after_success": [
]
}
]
}
}
Loading