Bump pillow from 10.0.1 to 10.3.0 #198
Open
Travis CI / Travis CI - Branch
succeeded
Apr 8, 2024 in 8m 10s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the dependabot/pip/pillow-10.3.0 branch. You should be able to reproduce it by checking out the branch locally.
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.9 |
Build Configuration
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"services": [
"docker"
],
"python": [
"3.9"
],
"install": [
"sudo apt-get update",
"python -m pip install --upgrade pip",
"pip install cmake",
"sudo apt install -y python3-dbus ffmpeg build-essential libdbus-glib-1-dev libgirepository1.0-dev tzdata libcairo2-dev libjpeg-dev python-cairo libhdf5-dev libopencv-dev cmake",
"pip install -r requirements.txt"
],
"before_script": [
"pip install black --upgrade",
"pip install gdown"
],
"script": [
"pip install freezegun",
"pytest -s",
"./check-style",
"python3 src/build.py -c tests/test-config.yaml tests --ext \".cptv\"",
"sudo mkdir /var/spool/cptv",
"sudo chmod -R 777 /var/spool/cptv",
"wget -O thermal-model.tar https://github.com/TheCacophonyProject/AI-Model/releases/download/v0.5/inc3-19012023-tflite.tar",
"mkdir thermal-model",
"tar xzvf thermal-model.tar -C thermal-model --strip-components=1",
"pip install tflite-runtime==2.11.0",
"python3 src/piclassify.py --file tests/clips/possum.cptv --thermal-config-file tests/config.toml -c tests/test-config.yaml"
],
"before_deploy": [
"python3 -m pip install --upgrade build",
"pip install twine",
"pip install urllib3==1.26.15 requests-toolbelt==0.10.1",
"echo $'[pypi]\\nusername = __token__\\npassword = '$PYPI_TOKEN > ~/.pypirc"
],
"deploy": [
{
"provider": "script",
"script": "bash ./docker_push.sh",
"on": {
"repo": "TheCacophonyProject/classifier-pipeline",
"tags": true
},
"skip_cleanup": true
},
{
"provider": "script",
"script": "bash ./pypi_push.sh",
"on": {
"branch": [
"pi-classifier"
]
},
"skip_cleanup": true
}
]
}
Loading