mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Python nightly doesn't support Numpy, or the other way around, but either way it doesn't work and causes build failures.
19 lines
276 B
YAML
19 lines
276 B
YAML
dist: bionic
|
|
language: python
|
|
|
|
python:
|
|
- "3.9"
|
|
|
|
# Custom directory, for the correct year
|
|
before_install:
|
|
- cd 2019
|
|
- python -m pip install --upgrade pip
|
|
|
|
script: pytest
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
before_cache:
|
|
- rm -f $HOME/.cache/pip/log/debug.log
|