Skip to content

Commit

Permalink
Split Python 2.7 & 3.7 in TOX tests
Browse files Browse the repository at this point in the history
Python 2.7 is not happy with new packages. Decouple and prepare to
eventually drop support on Python 2.7
  • Loading branch information
castelao committed Aug 11, 2019
1 parent 1fa9590 commit 45113b8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tox.ini
@@ -1,5 +1,5 @@
[tox] [tox]
envlist = py{27,37}-numpy{11,15,16}, flake envlist = py27-numpy11-{with,without}cotede, py37-numpy{15,16}-{with,without}cotede


[testenv] [testenv]
setenv = setenv =
Expand All @@ -14,11 +14,10 @@ commands =
deps = deps =
pytest>=3.0 pytest>=3.0
supportdata>=0.1.2 supportdata>=0.1.2
# py37 doesn't like numpy older then 1.13 numpy11: numpy>=1.11,<1.12
numpy11-!py37: numpy>=1.11,<1.12
numpy11-py37: numpy>=1.14,<1.15
numpy15: numpy>=1.15,<1.16 numpy15: numpy>=1.15,<1.16
numpy16: numpy>=1.16 numpy16: numpy>=1.16
withcotede: cotede


sitepackages = False sitepackages = False


Expand Down

0 comments on commit 45113b8

Please sign in to comment.