py 3.6 testing fixed via recent defusedxml release, fixes #298

defusedxml 0.5 fixes the py 3.6 issues.
This commit is contained in:
Thomas Waldmann 2017-02-10 15:35:09 +01:00
parent 561a8090df
commit ce4a6b9ffd
2 changed files with 1 additions and 2 deletions

View File

@ -35,8 +35,6 @@ matrix:
env: DJANGO=1.8.1 COVERAGE="coverage run -m" TEST_K="not ddns_client" TEST_OPTS="--pep8" env: DJANGO=1.8.1 COVERAGE="coverage run -m" TEST_K="not ddns_client" TEST_OPTS="--pep8"
- python: "3.6" - python: "3.6"
env: DJANGO=1.8.17 env: DJANGO=1.8.17
allow_failures:
- python: "3.6"
install: install:
- ./scripts/travis/install.sh - ./scripts/travis/install.sh

View File

@ -74,6 +74,7 @@ setup(
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: Name Service (DNS)', 'Topic :: Internet :: Name Service (DNS)',
], ],
) )