Adding some test matrix exclusions

This commit is contained in:
Dave Hall 2019-11-01 10:48:27 +00:00
parent bf5de0fd01
commit 585dbf7d82
2 changed files with 6 additions and 1 deletions

View file

@ -20,6 +20,10 @@ env:
matrix:
fast_finish: true
exclude:
- python: 3.8
env: DJANGO='>=1.9,<1.10'
- python: 3.8
env: DJANGO='>=1.8,<1.9'
- python: 2.7
env: DJANGO='>=2.0,<2.1'
- python: 2.7

View file

@ -33,9 +33,10 @@ setup(
"Operating System :: OS Independent",
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
"Framework :: Django",
],
)