1
0
Fork 0
mirror of https://github.com/topydo/topydo.git synced 2024-05-20 05:48:35 +00:00

Allow python 3.4 tests to fail in travis

Pip and arrow are both complaining about the presence of v3.4.

From the travis log

0.82s$ pip install .
DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP 429).
Processing /home/travis/build/davesteele/topydo
Collecting arrow>=0.7.0 (from topydo==0.13)
  Downloading a3d20e80ee/arrow-0.14.2-py2.py3-none-any.whl
ERROR: arrow requires Python '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*' but the running Python is 3.4.8

The command "pip install ." failed and exited with 1 during .

Your build has been stopped.
This commit is contained in:
David Steele 2020-03-03 16:57:39 -05:00
parent a4801840f4
commit bbc0a5d010

View file

@ -14,6 +14,7 @@ matrix:
env: GREEN_OPTS='--processes 1'
allow_failures:
- python: "3.3"
- python: "3.4"
install:
- "python -m pip install pip --upgrade"